http://www.perlmonks.org?node_id=1014869


in reply to Re: Very curious Problem...
in thread Very curious Problem...

Is it always unsafe when return back to the "upper" level loop in perl, since the inner looper may probably change the global $_?

Replies are listed 'Best First'.
Re^3: Very curious Problem... (avoiding $_)
by LanX (Saint) on Jan 23, 2013 at 10:17 UTC
    Yes after doing complicated things like invoking a subroutine $_ is pretty unsafe. ¹)

    Not only subs, there are plenty of commands which have a side effect on $_.

    $_ is only a shortcut with limited use in small situations that you can completely control, but over time code grows in unexpected ways.

    Better use named lexical variables in production code, especially when it is maintained by various people. ²)

    Global variables are generally more critical and should only be use for good reasons.

    I can strongly recommend you getting a copy of Perl Best Practices for good discussions of such issues. It will certainly improve your Perl skills.

    Cheers Rolf

    ¹) for completeness you could use local $_ (or even my $_ in recent Perls) within the subroutine, but this doesn't really solve the general problem of $_'s limited radius.

    ²) Think of $_ as the word it in human language, the longer a conversation only using "it", the unclearer what it (sic) is supposed to mean.

Re^3: Very curious Problem...
by Anonymous Monk on Jan 23, 2013 at 10:21 UTC
    if your sub uses $_ you should  local $_;