Help for this page

Select Code to Download


  1. or download this
    package MyApp::Object;
    use base qw( Class::Accessor::Fast );
    ...
        bless( $self, $type ); 
        return $self;
    }
    
  2. or download this
    if ( $obj->isa( 'Product::Real' ) ) {
        # do some real stuff
    } else {
        # do some potential stuff
    }