Beefy Boxes and Bandwidth Generously Provided by pair Networks
good chemistry is complicated,
and a little bit messy -LW
 
PerlMonks  

Re: OOP related, using methods in another object without inheriting them.

by runrig (Abbot)
on Feb 05, 2001 at 21:34 UTC ( [id://56444]=note: print w/replies, xml ) Need Help??


in reply to OOP related, using methods in another object without inheriting them.

Note that this would be a very un/anti-OO way to go about using OO methods. But here's a possibility:
my $obj1 = Package_one->new; my $obj2 = Package_two->new; my $results = $obj1->can('package_one_method')->($obj2, @more_args);
The 'can' method will return a code reference to the first objects method, and then you can pass that method the second object, and more arguments if necessary.

You can probably expect to be 'deprecated' for using methods in this way, though. But hey, at least perl lets you do it, whereas other 'OO' languages wouldn't :-)

Update:Your second init method is using '$self' as if it were a hash, when it is a hash ref (it should be "$self->{'index_path'} = shift", not "$self{'index_path'} ..."). And the same thing goes for your first new method (should be "$self->{'access_log_path'} ...".

  • Comment on Re: OOP related, using methods in another object without inheriting them.
  • Download Code

Log In?
Username:
Password:

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

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

    No recent polls found