Beefy Boxes and Bandwidth Generously Provided by pair Networks
Perl: the Markov chain saw
 
PerlMonks  

Re^2: my behavior with "NULL" declarations

by ysth (Canon)
on Jul 08, 2004 at 17:54 UTC ( [id://372885]=note: print w/replies, xml ) Need Help??


in reply to Re: my behavior with "NULL" declarations
in thread my behavior with "NULL" declarations

One may or may not be undef. This falls under the same category as warned about in perlsyn.pod:
NOTE: The behaviour of a my statement modified with a statement modifier conditional or loop construct (e.g. my $x if ...) is undefined. The value of the my variable may be undef, any previously assigned value, or possibly anything else. Don't rely on it. Future versions of perl might do something different from the version of perl you try it out on. Here be dragons.
Anyone have suggestions for expanding that text without making it more confusing? The basic rule is that my has both a run-time and compile-time effect, and the sane behaviour depends on the my being actually executed (for the run-time effect) for any path through the code that will later refer to that variable name.

Update: I'm not sure this applies after all. Don't see how the my can have even a compile-time effect.

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://372885]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others lurking in the Monastery: (3)
As of 2024-04-24 01:33 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found