Beefy Boxes and Bandwidth Generously Provided by pair Networks
There's more than one way to do things
 
PerlMonks  

Re^3: Bitten by the lazy execution bug?

by antirice (Priest)
on Dec 09, 2007 at 06:56 UTC ( [id://655937]=note: print w/replies, xml ) Need Help??


in reply to Re^2: Bitten by the lazy execution bug?
in thread Bitten by the lazy execution bug?

To quote from perldoc perlsub:

The array @_ is a local array, but its elements are aliases for the actual scalar parameters. In particular, if an element $_[0] is updated, the corresponding argument is updated (or an error occurs if it is not updatable). If an argument is an array or hash element which did not exist when the function was called, that element is created only when (and if) it is modified or a reference to it is taken.

Thus the behavior of this code:

#!/usr/bin/perl -l my @a = 1..3; sub inc { $_++ for @_; } inc(@a); print for @a; inc('hello'); __DATA__ 2 3 4 Modification of a read-only value attempted at - line 6.

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others learning in the Monastery: (4)
As of 2024-04-26 04:43 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found