Beefy Boxes and Bandwidth Generously Provided by pair Networks
"be consistent"
 
PerlMonks  

Re: Re: Re: OOP: Plugin Style Development

by Jenda (Abbot)
on Jul 23, 2002 at 19:21 UTC ( [id://184541]=note: print w/replies, xml ) Need Help??


in reply to Re: Re: OOP: Plugin Style Development
in thread OOP: Plugin Style Development

I'm not 100% it IS what is he doing. It doesn't hurt to explain it in more detail for others even if he does.

Anyway here's some code that implements the method checking:

# in package ShoppingCart @required_methods = qw(GetNext GetFirst Reset ...); sub initialize { my $self = shift; my $IO = shift; croak "The first parameter to 'new ShoppingCart' must be an IO objec +t!" unless ref $IO; foreach my $method (@required_methods) { croak("The IO object passed to 'new ShoppingCart' does not impleme +nt the necessary methods!") unless $IO->can($method); } $self->{IO} = $IO; } ...

The test is not compile time, but currently it's the best you can get. AFAIK of course.

  Jenda

Log In?
Username:
Password:

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

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

    No recent polls found