perltrap.pod has an example that shows how perl5 will
trap modification of a constant.
$foo = "x";
&mod($foo);
for ($x = 0; $x < 3; $x++) {
&mod("a");
}
sub mod {
print "before: $_[0]";
$_[0] = "m";
print " after: $_[0]\n";
}
perl5 reports this error as
Modification of a read-only value attempted...
Short of doing an eval { } like:
eval { $_[0] .= '' };
if ($@ =~ /Modification of a read-only value attempted/) {
to try to modify to the constant ahead of time, what other
ways does perl provide detect that a parameter to a sub is
a constant?
I've seen that Devel::Peek can report that the flags of a variable
are READONLY.
$ perl -MDevel::Peek -le 'Dump("hello")'
SV = PV(0x8121a3c) at 0x812b36c
REFCNT = 1
FLAGS = (POK,READONLY,pPOK)
PV = 0x812f498 "hello"\0
CUR = 5
LEN = 6
Does a module that returns the FLAGS exist?
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
| |
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.