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


in reply to Accessing Subroutine Arguments

The fewer parameters that you pass to a subroutine, the easier it tends to be to maintain (assuming that everything is nicely encapsulated and you're not using globals or something like that). This is because the logic of dealing with one variable is typically going to be simpler than the logic of dealing with multiple variables. However, if I must pass numerous parameters, I like to set a threshhold of say, 4 parameters, and switch to a named argument style.

Consider the following, which is easy to happen when reusing a lot of code:

some_func( $foo, $bar, $baz, $qux ); # in another program some_func( $w, $x, $y, $z ); # yet another program some_func( $amount, $rate, $limit, $exception );

With this, not only are you forced to pass multiple parameters (even if they are undef), but you have to remember the order of the parameters. This can be awkward. Hmm... do I have the third and fourth parameters reversed, or not? However, what if $limit is optional, and I can't remember the order of $rate and $exception? With named parameters, this is a moot point:

some_func( exception => $exception, amount => $amount, rate => $rate );

Cheers,
Ovid

Join the Perlmonks Setiathome Group or just click on the the link and check out our stats.