Help for this page

Select Code to Download


  1. or download this
    my %class_records;
    my $class_objects;
    ...
        my $this = $class_records{$refaddr($self)};
        ...
    }
    
  2. or download this
    my $class_name = __PACKAGE__;
    my %class_records;
    ...
        my $this = $class_records{$self->{$class_name}};
        ...
    }