Beefy Boxes and Bandwidth Generously Provided by pair Networks
Come for the quick hacks, stay for the epiphanies.
 
PerlMonks  

Re^2: 'my' with 'if 0' retains old value

by bart (Canon)
on Apr 21, 2006 at 15:23 UTC ( [id://544928]=note: print w/replies, xml ) Need Help??


in reply to Re: 'my' with 'if 0' retains old value
in thread 'my' with 'if 0' retains old value

my $v2; $v2 = -2 if 0;
Surely that won't do anything useful. I mean, it'll do the same as
my $v2;
Hence: no static variable, no value assigned.

Anyway:

my $v2 if 0;
will create a static variable. But IMO that's a coincidence of the implementation, I wouldn't count on it.

Replies are listed 'Best First'.
Re^3: 'my' with 'if 0' retains old value
by ikegami (Patriarch) on Apr 21, 2006 at 15:24 UTC
    What if 0 is actually DEBUG? I don't presume to know what the real code is like.

      or what if 0 is actually rand() > .5? Then it's a static variable *some* of the time.

      ⠤⠤ ⠙⠊⠕⠞⠁⠇⠑⠧⠊

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others having an uproarious good time at the Monastery: (4)
As of 2024-04-24 21:59 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found