3 perlbot - Bag'o Object Tricks (the BOT)
7 The following collection of tricks and hints is intended to whet curious
8 appetites about such things as the use of instance variables and the
9 mechanics of object and class relationships. The reader is encouraged to
10 consult relevant textbooks for discussion of Object Oriented definitions and
11 methodology. This is not intended as a tutorial for object-oriented
12 programming or as a comprehensive guide to Perl's object oriented features,
13 nor should it be construed as a style guide. If you're looking for tutorials,
14 be sure to read L<perlboot>, L<perltoot>, and L<perltooc>.
16 The Perl motto still holds: There's more than one way to do it.
18 =head1 OO SCALING TIPS
24 Do not attempt to verify the type of $self. That'll break if the class is
25 inherited, when the type of $self is valid but its package isn't what you
30 If an object-oriented (OO) or indirect-object (IO) syntax was used, then the
31 object is probably the correct type and there's no need to become paranoid
32 about it. Perl isn't a paranoid language anyway. If people subvert the OO
33 or IO syntax then they probably know what they're doing and you should let
34 them do it. See rule 1.
38 Use the two-argument form of bless(). Let a subclass use your constructor.
39 See L<INHERITING A CONSTRUCTOR>.
43 The subclass is allowed to know things about its immediate superclass, the
44 superclass is allowed to know nothing about a subclass.
48 Don't be trigger happy with inheritance. A "using", "containing", or
49 "delegation" relationship (some sort of aggregation, at least) is often more
50 appropriate. See L<OBJECT RELATIONSHIPS>, L<USING RELATIONSHIP WITH SDBM>,
55 The object is the namespace. Make package globals accessible via the
56 object. This will remove the guess work about the symbol's home package.
57 See L<CLASS CONTEXT AND THE OBJECT>.
61 IO syntax is certainly less noisy, but it is also prone to ambiguities that
62 can cause difficult-to-find bugs. Allow people to use the sure-thing OO
63 syntax, even if you don't like it.
67 Do not use function-call syntax on a method. You're going to be bitten
68 someday. Someone might move that method into a superclass and your code
69 will be broken. On top of that you're feeding the paranoia in rule 2.
73 Don't assume you know the home package of a method. You're making it
74 difficult for someone to override that method. See L<THINKING OF CODE REUSE>.
78 =head1 INSTANCE VARIABLES
80 An anonymous array or anonymous hash can be used to hold instance
81 variables. Named parameters are also demonstrated.
89 $self->{'High'} = $params{'High'};
90 $self->{'Low'} = $params{'Low'};
101 $self->[0] = $params{'Left'};
102 $self->[1] = $params{'Right'};
108 $a = Foo->new( 'High' => 42, 'Low' => 11 );
109 print "High=$a->{'High'}\n";
110 print "Low=$a->{'Low'}\n";
112 $b = Bar->new( 'Left' => 78, 'Right' => 40 );
113 print "Left=$b->[0]\n";
114 print "Right=$b->[1]\n";
116 =head1 SCALAR INSTANCE VARIABLES
118 An anonymous scalar can be used when only one instance variable is needed.
135 =head1 INSTANCE VARIABLE INHERITANCE
137 This example demonstrates how one might inherit instance variables from a
138 superclass for inclusion in the new class. This requires calling the
139 superclass's constructor and adding one's own instance variables to the new
164 print "buz = ", $a->{'buz'}, "\n";
165 print "biz = ", $a->{'biz'}, "\n";
169 =head1 OBJECT RELATIONSHIPS
171 The following demonstrates how one might implement "containing" and "using"
172 relationships between objects.
188 $self->{'Bar'} = Bar->new;
196 print "buz = ", $a->{'Bar'}->{'buz'}, "\n";
197 print "biz = ", $a->{'biz'}, "\n";
201 =head1 OVERRIDING SUPERCLASS METHODS
203 The following example demonstrates how to override a superclass method and
204 then call the overridden method. The B<SUPER> pseudo-class allows the
205 programmer to call an overridden superclass method without actually knowing
206 where that method is defined.
209 sub goo { print "here's the goo\n" }
211 package Bar; @ISA = qw( Buz );
212 sub google { print "google here\n" }
215 sub mumble { print "mumbling\n" }
218 @ISA = qw( Bar Baz );
224 sub grr { print "grumble\n" }
231 $self->SUPER::mumble();
235 $self->SUPER::google();
246 Note that C<SUPER> refers to the superclasses of the current package
247 (C<Foo>), not to the superclasses of C<$self>.
250 =head1 USING RELATIONSHIP WITH SDBM
252 This example demonstrates an interface for the SDBM class. This creates a
253 "using" relationship between the SDBM class and the new class Mydbm.
259 @ISA = qw( Tie::Hash );
263 my $ref = SDBM_File->new(@_);
264 bless {'dbm' => $ref}, $type;
268 my $ref = $self->{'dbm'};
274 my $ref = $self->{'dbm'};
277 die "Cannot STORE an undefined key in Mydbm\n";
282 use Fcntl qw( O_RDWR O_CREAT );
284 tie %foo, "Mydbm", "Sdbm", O_RDWR|O_CREAT, 0640;
286 print "foo-bar = $foo{'bar'}\n";
288 tie %bar, "Mydbm", "Sdbm2", O_RDWR|O_CREAT, 0640;
290 print "bar-Cathy = $bar{'Cathy'}\n";
292 =head1 THINKING OF CODE REUSE
294 One strength of Object-Oriented languages is the ease with which old code
295 can use new code. The following examples will demonstrate first how one can
296 hinder code reuse and then how one can promote code reuse.
298 This first example illustrates a class which uses a fully-qualified method
299 call to access the "private" method BAZ(). The second example will show
300 that it is impossible to override the BAZ() method.
310 $self->FOO::private::BAZ;
313 package FOO::private;
324 Now we try to override the BAZ() method. We would like FOO::bar() to call
325 GOOP::BAZ(), but this cannot happen because FOO::bar() explicitly calls
336 $self->FOO::private::BAZ;
339 package FOO::private;
353 print "in GOOP::BAZ\n";
361 To create reusable code we must modify class FOO, flattening class
362 FOO::private. The next example shows a reusable class FOO which allows the
363 method GOOP::BAZ() to be used in place of FOO::BAZ().
388 print "in GOOP::BAZ\n";
396 =head1 CLASS CONTEXT AND THE OBJECT
398 Use the object to solve package and class context problems. Everything a
399 method needs should be available via the object or should be passed as a
400 parameter to the method.
402 A class will sometimes have static or global data to be used by the
403 methods. A subclass may want to override that data and replace it with new
404 data. When this happens the superclass may not know how to find the new
407 This problem can be solved by using the object to define the context of the
408 method. Let the method look in the object for a reference to the data. The
409 alternative is to force the method to go hunting for the data ("Is it in my
410 class, or in a subclass? Which subclass?"), and this can be inconvenient
411 and will lead to hackery. It is better just to let the object tell the
412 method where that data is located.
416 %fizzle = ( 'Password' => 'XYZZY' );
421 $self->{'fizzle'} = \%fizzle;
428 # Don't try to guess if we should use %Bar::fizzle
429 # or %Foo::fizzle. The object already knows which
430 # we should use, so just ask it.
432 my $fizzle = $self->{'fizzle'};
434 print "The word is ", $fizzle->{'Password'}, "\n";
440 %fizzle = ( 'Password' => 'Rumple' );
445 $self->{'fizzle'} = \%fizzle;
456 =head1 INHERITING A CONSTRUCTOR
458 An inheritable constructor should use the second form of bless() which allows
459 blessing directly into a specified class. Notice in this example that the
460 object will be a BAR not a FOO, even though the constructor is in class FOO.
471 print "in FOO::baz()\n";
478 print "in BAR::baz()\n";
488 Some classes, such as SDBM_File, cannot be effectively subclassed because
489 they create foreign objects. Such a class can be extended with some sort of
490 aggregation technique such as the "using" relationship mentioned earlier or
493 The following example demonstrates delegation using an AUTOLOAD() function to
494 perform message-forwarding. This will allow the Mydbm object to behave
495 exactly like an SDBM_File object. The Mydbm class could now extend the
496 behavior by adding custom FETCH() and STORE() methods, if this is desired.
502 @ISA = qw(Tie::Hash);
506 my $ref = SDBM_File->new(@_);
507 bless {'delegate' => $ref};
513 # The Perl interpreter places the name of the
514 # message in a variable called $AUTOLOAD.
516 # DESTROY messages should never be propagated.
517 return if $AUTOLOAD =~ /::DESTROY$/;
519 # Remove the package name.
520 $AUTOLOAD =~ s/^Mydbm:://;
522 # Pass the message to the delegate.
523 $self->{'delegate'}->$AUTOLOAD(@_);
527 use Fcntl qw( O_RDWR O_CREAT );
529 tie %foo, "Mydbm", "adbm", O_RDWR|O_CREAT, 0640;
531 print "foo-bar = $foo{'bar'}\n";
535 L<perlboot>, L<perltoot>, L<perltooc>.