Help for this page

Select Code to Download


  1. or download this
     sub DESTROY{
          my $self = shift;
          $self->coun_decr();
          bless $self, $ISA[0]; 
     }
    
  2. or download this
      my $inst_count = 0;
      sub get_inst_count { $inst_count }
      sub _incr_inst_count { ++$inst_count }
      sub _decr_inst_count { --$inst_count }