I know with OO Perl I can have objects and inheritance, but are interfaces implemented? If so, how are they enforced?
|
|
You can create a pure virtual class (or role if you are using Moose or MooseX::Declare):
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:
|
|||
|
|
|
|
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.) |
||||
|
|
|
But of course! Class::Interface. That said, I'd look at Moose first. It is fantastic. |
||||
|
