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

Re^3: Strange behavior: passing $1 to AUTOLOAD

by Elian (Parson)
on Sep 22, 2004 at 22:50 UTC ( [id://393072]=note: print w/replies, xml ) Need Help??


in reply to Re^2: Strange behavior: passing $1 to AUTOLOAD
in thread Strange behavior: passing $1 to AUTOLOAD

The general rule is never, ever pass in $1 and its friends, as they're terribly ephemeral. Make copies and pass them in instead.

Replies are listed 'Best First'.
Re^4: Strange behavior: passing $1 to AUTOLOAD
by ysth (Canon) on Sep 23, 2004 at 03:52 UTC
    Make copies and pass them in instead.
    This is as easy as just passing "$1" instead of $1.
Re^4: Strange behavior: passing $1 to AUTOLOAD
by nobull (Friar) on Sep 23, 2004 at 06:53 UTC
    The general rule is never, ever pass in $1 and its friends, as they're terribly ephemeral. Make copies and pass them in instead.
    That's a good general rule but I'd still go for belt and braces.

    If the API of a function doesn't say it treats its arguments as lvalues then it is good practice to make copies of the elements from @_. If you need to do any regex processing before you unpack @_ then wrap it in a block.

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others having a coffee break in the Monastery: (3)
As of 2024-03-29 14:38 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found