Beefy Boxes and Bandwidth Generously Provided by pair Networks
Clear questions and runnable code
get the best and fastest answer
 
PerlMonks  

Re: OOP: Plugin Style Development

by dpuu (Chaplain)
on Jul 22, 2002 at 19:22 UTC ( [id://184189]=note: print w/replies, xml ) Need Help??


in reply to OOP: Plugin Style Development

Perl doesn't do interface checking at compile time; so if you wanted to check it, you'd have to write your own checking code:
package Foo; use base 'Bar'; my @missing_methods = grep { ! Foo->can($_) } qw(foo bar baz); if (@missing_methods) { die "missing methods: @missing_methods"; } ...
--Dave.

Replies are listed 'Best First'.
Re: Re: OOP: Plugin Style Development
by lachoy (Parson) on Jul 22, 2002 at 21:30 UTC

    FWIW, the recent release of interface to CPAN might help with this compile-time checking.

    Chris
    M-x auto-bs-mode

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others perusing the Monastery: (3)
As of 2024-04-20 02:14 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found