Help for this page

Select Code to Download


  1. or download this
    {   my $obj = Harf -> new;
        my $obj2 = $obj;
        undef $obj;    # Does *not* call DESTROY!
        ....
    }   # Only here DESTROY is called, as also $obj2 goes out of scope.