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

Re: Control Flow - Multiple returns or nested conditionals

by TomDLux (Vicar)
on Oct 07, 2010 at 20:48 UTC ( [id://864084]=note: print w/replies, xml ) Need Help??


in reply to Control Flow - Multiple returns or nested conditionals

I very much like early exits ( return, next,last ) when they avoid getting deep into stuff, especially dealing with exceptions, errors, irregularities. This example allows empty lines and comments in a data file.

open my $datafile ... LINE: while ( my $line = <$file> ) { next LINE unless length $line; next LINE if ( $line =~ m{\A \s* #}xms; process $line; }

If you're selecting one of several possible return values, I think it better to determine the value and return it in a single place. Otherwise you have a situation where a return value of XYZ may have arisen from this return statement or from that return statement. If the blocks are more than a few lines long, it may be worth encapsulating it into a named subroutine. That way the main block is short and easy to read:

if ( option_A( $line ) ) { $retval = do_this_complicated_thing( $line ); } elsif ( option_B( $line ) { retval = 'alphagetti'; retval .= ' and maple syrup' if $option_C( $line ); } else { $retval = 42; } return $retval;

As Occam said: Entia non sunt multiplicanda praeter necessitatem.

Log In?
Username:
Password:

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

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

    No recent polls found