Help for this page

Select Code to Download


  1. or download this
    package Child;
    use base qw(Parent);
    ...
        $self->do_child_specific_stuff();
        return $self;
    }
    
  2. or download this
    # ...
      my $self = $class->SUPER::new();
      bless $self,$class;  # re-bless to right classname
      $self->do_child_specific_stuff();
    # ...