Beefy Boxes and Bandwidth Generously Provided by pair Networks
Syntactic Confectionery Delight
 
PerlMonks  

Re: Subroutine args by-value vs. by-ref

by wog (Curate)
on Aug 24, 2002 at 06:02 UTC ( [id://192525]=note: print w/replies, xml ) Need Help??


in reply to Subroutine args by-value vs. by-ref

The implict reference is not a hard reference, as perlref speaks of, but an aliasing that occurs. For example:

sub x { $_[0] = "in x"; } my $foo = "outside"; x($foo);
... will set $foo to "in x". The thing in @_ has become an alias for $foo. However, you won't get this behavior if you explictly copy the value out of @_, as in:
sub x { my($foo) = @_; $foo = "in x"; } my $foo = "outside"; x($foo);
When you copy the value, you are not working with an alias to the thing passed in, but you a working with a copy, bringing you the pass-by-value semantics that are probably more intutitive to you.

Log In?
Username:
Password:

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

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

    No recent polls found