in reply to Re: Parent cannot call Child method
in thread Parent cannot call Child method
I tried it that way and got this error:
Can't locate object method "new" via package "MyParent::MyChild" (perh +aps you forgot to load "MyParent::MyChild"?) at
This is how I changed the original call:
use MyParent::MyChild; my $obj = MyParent::MyChild->new(); $obj->parent_nifty_method1;
I tried use MyParent in addition to use MyParent::MyChild, neither worked.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^3: Parent cannot call Child method
by jellisii2 (Hermit) on Mar 17, 2016 at 13:28 UTC | |
by TorontoJim (Beadle) on Mar 17, 2016 at 13:34 UTC | |
by Eily (Monsignor) on Mar 17, 2016 at 15:02 UTC | |
by TorontoJim (Beadle) on Mar 17, 2016 at 15:21 UTC |