Beefy Boxes and Bandwidth Generously Provided by pair Networks
"be consistent"
 
PerlMonks  

Re^5: Puzzling $| behavior

by ikegami (Patriarch)
on Oct 08, 2007 at 16:58 UTC ( [id://643502]=note: print w/replies, xml ) Need Help??


in reply to Re^4: Puzzling $| behavior
in thread Puzzling $| behavior

It's not because of an optimization.

# $_ $_[0] $_[1] $_[0] $_[1] # ----- ----- ----- ----- ----- $_ = 1; # 1 do { # local @_; # alias $_[0] = $_+=2; # 3 $_ 3 alias $_[1] = $_+=3; # 6 $_ $_ 6 6 &f; };

Add $_++; to f and you'll see it print 7, 7 because $_[0] and $_[1] are aliased to $_.

It works that way because += returns its LHS as an lvalue.

>perl -le "$_=1; ($_+=2)+=3; print $_" 6

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others romping around the Monastery: (1)
As of 2024-04-24 16:20 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found