Beefy Boxes and Bandwidth Generously Provided by pair Networks
The stupid question is the question not asked
 
PerlMonks  

Re^3: adding temporary method to a class

by ikegami (Patriarch)
on Sep 20, 2006 at 17:37 UTC ( [id://573959]=note: print w/replies, xml ) Need Help??


in reply to Re^2: adding temporary method to a class
in thread adding temporary method to a class

This sounds like something for which code references would be more suitable.

After reading up on the Visitor pattern — I wasn't familiar with it by name — I dare say it *is* something for which code references would be more suitable. The example on that paged could be implemented as follows in Perl:

use strict; use warnings; { package Wheel; sub new { my ($class, $name) = @_; return bless({ name => $name }, $class); } sub get_name { my ($self) = @_; return $self->{name}; } sub accept { my ($self, $visitor) = @_; $visitor->($self); } } { package Engine; sub new { my ($class) = @_; return bless({}, $class); } sub accept { my ($self, $visitor) = @_; $visitor->($self); } } { package Body; sub new { my ($class) = @_; return bless({}, $class); } sub accept { my ($self, $visitor) = @_; $visitor->($self); } } { package Car; sub new { my ($class) = @_; return bless({ engine => Engine->new(), body => Body->new(), wheels => [ map { Wheel->new($_) } 'front left', 'front right', 'back left', 'back right', ], }, $class); } sub accept { my ($self, $visitor) = @_; $visitor->($self); $self->{engine}->accept($visitor); $self->{body}->accept($visitor); $_->accept($visitor) foreach @{$self->{wheels}}; } } sub visitor { my ($o) = @_; if ($o->isa('Wheel')) { print("Visiting ", $o->get_name(), " wheel\n"); } elsif ($o->isa('Body')) { print("Visiting body\n"); } elsif ($o->isa('Engine')) { print("Visiting engine\n"); } elsif ($o->isa('Car')) { print("Visiting car\n"); } else { die("Unknown class " . ref($o)); } } { my $car = Car->new(); $car->accept(\&visitor); }

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://573959]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others having a coffee break in the Monastery: (4)
As of 2024-04-19 23:26 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found