3.1 Performing the Same Task on Many ArraysBefore the Minnow can leave on an excursion (e.g., a three-hour tour), every passenger and crew member should be checked to ensure they have all the required trip items in their possession. Let's say that for maritime safety, every person on board the Minnow needs to have a life preserver, some sunscreen, a water bottle, and a rain jacket. You can write a bit of code to check for the Skipper's supplies: my @required = qw(preserver sunscreen water_bottle jacket); The grep in a scalar context returns the number of times the expression $item eq $_ returns true, which is 1 if the item is in the list and 0 if not.[1] If the value is 0, it's false, and you print the message.[1] There are more efficient ways to check list membership for large lists, but for a few items, this is probably the easiest way to do so with just a few lines of code. Of course, if you want to check on Gilligan and the Professor, you might write the following code: my @gilligan = qw(red_shirt hat lucky_socks water_bottle); You may start to notice a lot of repeated code here and decide that it would be served best in a subroutine: sub check_required_items {The subroutine is given five items in its @_ array initially: the name gilligan and the four items belonging to Gilligan. After the shift, @_ will have only the items. Thus, the grep checks each required item against the list.So far, so good. You can check the Skipper and the Professor with just a bit more code: my @skipper = qw(blue_shirt hat jacket preserver sunscreen); And for the other passengers, you repeat as needed. Although this code meets the initial requirements, you've got two problems to deal with: To create @_, Perl copies the entire contents of the array to be scanned. This is fine for a few items, but if the array is large, it seems a bit wasteful to copy the data just to pass it into a subroutine. Suppose you want to modify the original array to force the provisions list to include the mandatory items. Because you have a copy in the subroutine ("pass by value"), any changes made to @_ aren't reflected automatically in the corresponding provisions array.[2][2] Actually, assigning new scalars to elements of @_ after the shift modifies the corresponding variable being passed, but that still wouldn't let you extend the array with additional mandatory provisions. To solve either or both of these problems, you need pass by reference rather than pass by value. And that's just what the doctor (or Professor) ordered. |
•
Table of Contents
•
Index
•
Reviews
•
Reader Reviews
•
Errata
Learning Perl Objects, References & Modules
By
Randal L. Schwartz