- or download this
package Parent;
...
...
# do something
}
}
- or download this
package Child;
...
...
$self->SUPER::AUTOLOAD($method, @_);
}
}
- or download this
package Parent;
...
...
}
...
}
- or download this
# in Child::AUTOLOAD()
# instead of $self->SUPER::AUTOLOAD($method, @_);
my $super_method = 'SUPER::' . $method;
$self->$super_method(@_);