vote up 6 vote down star
2

I know with OO Perl I can have objects and inheritance, but are interfaces implemented? If so, how are they enforced?

flag

3 Answers

vote up 15 vote down check

You can create a pure virtual class (or role if you are using Moose or MooseX::Declare):

package Foo;

use strict;
use Carp;

sub new  { croak "new not implemented" };
sub do_x { croak "do_x not implemented" };
sub do_y { croak "do_y not implemented" };

But the enforcement will be at run-time. In general, interfaces are needed because the language does not support multiple inheritance and is strictly typed. Perl supports multiple inheritance and (using Moose) something like multiple inheritance (but better) called roles and it is dynamically typed. The strict vs dynamic typing comes down to duck typing (if it quacks() like duck, walks() like a duck, and swims() like a duck, then it is a duck). In Perl, you say:

if ($some_obj->can("quack") {
    $some_obj->quack;
} else {
    croak "incompatible class type: ", ref $some_obj;
}
link|flag
vote up 11 vote down

In traditional Perl OO, very little is enforced. You have the option of $obj->can('methodname') to duck-type what you're using, but there's nothing much like an interface.

(But have a look at Moose, the Roles in there may be what you're after.)

link|flag
+1 for Moose with Roles. Especially if you're coming from a strict OO background/preference, it does what you like. – Kyle Walsh Sep 2 at 11:46
stackoverflow.com/questions/1341903/… – draegtun Sep 5 at 19:20
vote up 9 vote down

But of course! Class::Interface.

That said, I'd look at Moose first. It is fantastic.

link|flag
1  
Yeah, right, CPAN has everything. ;-) – ijw Sep 2 at 11:42

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.