in reply to Abstract Classes
With this simple approach, if your subclasses don't redefine "new" (they define the init method instead), then they get the interface checking. If they do redefine "new", then they can still check the interface by calling the check_interface method explicitly.package BaseClass; sub new { my ($class, @args) = @_; my $self = bless {}, $class; $self->init(@args); $self->check_interface__BaseClass; $self; } sub init { die "oops, this is the base class" } sub check_interface__BaseClass { my ($self) = @_; foreach my $method (qw[ foo bar baz ]) { $self->can($method) or die "method $method not implemented"; } }
Sure, it has its limitations, but if you want a lightweight solution, this seems to fit the bill. --Dave
|
---|