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


in reply to Re: while(<>) { ... } considered harmful
in thread while(<>) { ... } considered harmful

I believe that's a minimal demonstration of a bug, rather than "real" code.

On the subject of while(<>) vs. while(my $line = <>), I tend to prefer the former:

I haven't really thought about it, but if a loop's so complex that you have to assign to an explicit iterator variable just to figure out what's going on (as opposed to a loop where defaulting to $_ would be inappropriate for other reasons), it's probably an indication that the loop needs simplifying.

--
F o x t r o t U n i f o r m
Found a typo in this node? /msg me
The hell with paco, vote for Erudil!

Replies are listed 'Best First'.
Re: Re(2): while(<>) { ... } considered harmful
by IlyaM (Parson) on Sep 08, 2002 at 19:28 UTC
    I believe that's a minimal demonstration of a bug, rather than "real" code.

    You are right. Real code looks like:

    my @other_connectors = map $ad_obj->connector(field => $_), qw(header description region country state);
    No require on the surface. It was deeply hidden in one of method calls. I though it was just a Perl bug when I got that error for first time.

    --
    Ilya Martynov (http://martynov.org/)