Perl Programming Subroutines in Perl |
Subroutines are one of the two primary problem-decomposition tools available in Perl, modules being the other. They provide a convenient and familiar way to break a large task down into pieces that are small enough to understand, concise enough to implement, focused enough to test, and simple enough to debug. In effect, subroutines allow programmers to extend the Perl language, creating useful new behaviours with sensible names. Having written a subroutine, you can immediately forget about its internals, and focus solely on the abstracted process or function it implements. So the extensive use of subroutines helps to make a program more modular, which in turn makes it more robust and maintainable. Subroutines also make it possible to structure the actions of programs hierarchically, at increasingly high levels of abstraction, which improves the readability of the resulting code. That’s the theory, at least. In practice, there are plenty of ways that using subroutines can make code less robust, buggier, less concise, slower, and harder to understand. The guidelines in this chapter focus on avoiding those outcomes. Call Syntax Call subroutines with parentheses but without a leading &. It’s possible to call a subroutine without parentheses, if it has already been declared in the current namespace: sub coerce; # and later... my $expected_count = coerce $input, $INTEGER, $ROUND_ZERO; But that approach can quickly become much harder to understand: fix my $gaze, upon each %suspect; More importantly, leaving off the parentheses on subroutines makes them harder to distinguish from builtins, and therefore increases the mental search space when the reader is confronted with either type of construct. Your code will be easier to read and understand if the subroutines always use parentheses and the built-in functions always don’t: my $expected_count = coerce($input, $INTEGER, $ROUND_ZERO); fix(my $gaze, upon(each %suspect)); Some programmers still prefer to call a subroutine using the ancient Perl 4 syntax, with an ampersand before the subroutine name: &coerce($input, $INTEGER, $ROUND_ZERO); &fix(my $gaze, &upon(each %suspect)); Perl 5 does support that syntax, but nowadays it’s unnecessarily cluttered. Barewords is forbidden underuse strict, so there are far fewer situations in which a subroutine call has to be disambiguated. On the other hand, the ampersand itself is visually ambiguous; it can also signify a bitwise AND operator, depending on context. And context can be extremely subtle: $curr_pos = tell &get_mask(); # means: tell(get_mask()) Prefixing with&can also lead to other subtle (but radical) differences in behaviour: sub fix { # Fix each argument by grammatically transforming it and then printing it... return; # and later... &fix('the race'); # Works as expected, prints: 'some races' All in all, it’s clearer, less ambiguous, and less error-prone to reserve the&subnamesyntax for taking references to named subroutines: set_error_handler( \&log_error ); Just use parentheses to indicate a subroutine call: coerce($input, $INTEGER, $ROUND_ZERO); fix( my $gaze, upon(each %suspect) ); $curr_pos = tell get_mask(); And always use the parentheses when calling a subroutine, even when the subroutine takes no arguments (like get_mask()). That way it’s immediately obvious that you intend a subroutine call: curr_obj()->update($status); # Call curr_obj() to get an object, and not a typename: curr_obj->update($status); # Maybe the same (if currobj() already declared),
blog comments powered by Disqus |
|
|
|
|
|
|
|