Section 11.1. If We Could Talk to the Animals...


11.1. If We Could Talk to the Animals...

Obviously, the castaways can't survive on coconuts and pineapples alone. Luckily for them, a barge carrying random farm animals crashed on the island not long after they arrived, and the castaways began farming and raising animals.

Let's listen to those animals for a moment:

 sub Cow::speak {   print "a Cow goes moooo!\n"; } sub Horse::speak {   print "a Horse goes neigh!\n"; } sub Sheep::speak {   print "a Sheep goes baaaah!\n"; } Cow::speak; Horse::speak; Sheep::speak; 

This results in:

 a Cow goes moooo! a Horse goes neigh! a Sheep goes baaaah! 

Nothing spectacular here: simple subroutines, albeit from separate packages, and called using the full package name. Let's create an entire pasture:

 sub Cow::speak {   print "a Cow goes moooo!\n"; } sub Horse::speak {   print "a Horse goes neigh!\n"; } sub Sheep::speak {   print "a Sheep goes baaaah!\n"; } my @pasture = qw(Cow Cow Horse Sheep Sheep); foreach my $beast (@pasture) {   &{$beast."::speak"};                # Symbolic coderef } 

This results in:

 a Cow goes moooo! a Cow goes moooo! a Horse goes neigh! a Sheep goes baaaah! a Sheep goes baaaah! 

Wow. That symbolic coderef dereferencing there in the body of the loop is pretty nasty. We're counting on no strict 'refs' mode, certainly not recommended for larger programs.[*] And why was that necessary? Because the name of the package seems inseparable from the name of the subroutine we want to invoke within that package.

[*] Although all examples in this book should be valid Perl code, some examples in this chapter will break the rules enforced by use strict to make them easier to understand. By the end of the chapter, though, we'll show how to make strict-compliant code again.

Or is it?




Intermediate Perl
Intermediate Perl
ISBN: 0596102062
EAN: 2147483647
Year: N/A
Pages: 238

flylib.com © 2008-2017.
If you may any questions please contact us: flylib@qtcs.net