Beefy Boxes and Bandwidth Generously Provided by pair Networks
We don't bite newbies here... much
 
PerlMonks  

Re: Re: Perl Programming guidlines/rules

by BUU (Prior)
on Nov 21, 2002 at 23:48 UTC ( [id://214958]=note: print w/replies, xml ) Need Help??


in reply to Re: Perl Programming guidlines/rules
in thread Perl Programming guidelines/rules

I support using $_, but you should perhaps implement a standard/guideline in the form of 'Localize $_ in all user created subs', as something like the following:
sub foo{my $blah=shift; $_=substr $blah,0,1; /foo/;}
Which looks fairly innocuous in the use of $_ to avoid more temporary vars (It's not an extremely good example, but it serves), but then you do something likemap{foo($_->[0]);$_;} which can return wildly different results then you expected, and lead to many.. interesting.. bugs.

Replies are listed 'Best First'.
Re: Re: Re: Perl Programming guidlines/rules
by belden (Friar) on Nov 22, 2002 at 17:13 UTC
    Wow, that really localizes $_ ? To me, it looks more like a straight assignment to $_. I would've expected something like:

    sub foo { local $_ = shift; /foo/; }

    blyman
    :wq

      No, it doesn't localize, and I'm fairly certain that BUU was pointing out that failing to do so is dangerous.

      Makeshifts last the longest.

Log In?
Username:
Password:

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

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

    No recent polls found