Beefy Boxes and Bandwidth Generously Provided by pair Networks
Your skill will accomplish
what the force of many cannot
 
PerlMonks  

Re: Different behaviors between "while" and "map"

by friedo (Prior)
on Dec 06, 2008 at 00:08 UTC ( [id://728437]=note: print w/replies, xml ) Need Help??


in reply to Different behaviors between "while" and "map"

The reason this happens is because the while loop is designed to operate on <> like an iterator. Thus, it reads one line at a time until it can't read anymore.

By contrast, using <> as the list for your map block reads the entire file in all at once, incrementing $. along the way. The entire file then gets passed to your map block as one big list, and by this time, $. has already been incremented to the number of the last line, so the same $. gets printed each time through the map block.

Replies are listed 'Best First'.
Re^2: Different behaviors between "while" and "map"
by Joost (Canon) on Dec 06, 2008 at 00:43 UTC
    Just to expand a little on this: map, grep, foreach and most while constructs all work on perl's concept of lists.

    while (<SOME_FILE_HANDLE>)
    is special. it does not act like any other iteration construct, not even like any other while() construct. It explicitly iterates over each record ("line") one by one instead of converting the whole file to a list first.

      It helps to know that the loop is expanded to:

      while ($_ = <SOME_FILE_HANDLE>){ ... }

      This shows that <...> is nothing more than a loop condition: the loop body is executed immediately after each evaluation of the <...> operator. This is how a while loop works.

        Not for the last 12 years or so. It's expanded to
        while (defined ($_ = <SOME_FILE_HANDLE>)) { ... }

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others chilling in the Monastery: (3)
As of 2024-04-19 05:45 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found