Help for this page

Select Code to Download


  1. or download this
    $x->SUPER::SUPER::method;
    
  2. or download this
    # Within the child, get the parent’s class name from @ISA
    my ($parent) = @ISA;
    ...
    # Get a reference to the grandparent’s method “me”
    my $y = $grandparent->can('me');
    $y->($object);