Beefy Boxes and Bandwidth Generously Provided by pair Networks
go ahead... be a heretic
 
PerlMonks  

Re: shift vs @_

by hgolden (Pilgrim)
on Oct 02, 2006 at 18:22 UTC ( [id://575921]=note: print w/replies, xml ) Need Help??


in reply to shift vs @_

To put it one way, they are always using @_. If you don't give an array to shift, it uses @_.

I think the "shift" idiom caught on out of laziness, though it's not as slick with more than one argument. You can write:

my $var1 = shift; my $var2 = shift;...
Likewise, you can write:
my ($var)=@_;
for only one argument.

Hays

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others drinking their drinks and smoking their pipes about the Monastery: (2)
As of 2024-04-20 03:30 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found