Beefy Boxes and Bandwidth Generously Provided by pair Networks
Do you know where your variables are?
 
PerlMonks  

Re: Exiting eval via next: is that so bad?

by Agermain (Scribe)
on Aug 14, 2001 at 19:19 UTC ( [id://104794]=note: print w/replies, xml ) Need Help??


in reply to Exiting eval via next: is that so bad?

Well, if you use next to leave an eval, you're effectively leaving the eval container to get back to your main program or whatever. Logically, a next command should take you to a block in the same container, shouldn't it? I mean, if you write a subroutine with a next command, Perl would expect the next command to refer to a local label. Same with eval commands, I'm guessing. It's like pointing to someone in the Marketing department to get an Engineering task done, which defeats the purpose of encapsulating things into evals and subs. The 'damage' would be limited to confusion when/if things don't work as expected.

Update: hofmator below gives a better answer, I think. It basically comes down to the fact that eval isn't built specifically for looping, so you should probably use another structure (like do) if possible.

andre germain
"Wherever you go, there you are."

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others having an uproarious good time at the Monastery: (1)
As of 2024-04-25 00:21 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found