Beefy Boxes and Bandwidth Generously Provided by pair Networks
Clear questions and runnable code
get the best and fastest answer
 
PerlMonks  

Re^2: No DESTROY object.

by gam3 (Curate)
on Jan 22, 2010 at 16:16 UTC ( [id://818990]=note: print w/replies, xml ) Need Help??


in reply to Re: No DESTROY object.
in thread No DESTROY object.

UPDATE: Nevermind.

An easier fix is

bless(\sub {}, 'Foo');
I don't want to fix the problem, I only want to understand it.
-- gam3
A picture is worth a thousand words, but takes 200K.

Replies are listed 'Best First'.
Re^3: No DESTROY object.
by WizardOfUz (Friar) on Jan 22, 2010 at 17:20 UTC

    Errr ... no, it is not:

    perl -we 'bless( \sub {}, "Foo" )->();' Not a CODE reference at -e line 1.
    Because:
    perl -we 'print bless( \sub {}, "Foo" ) . "\n";' Foo=REF(0x82998c4)

    Update: To answer your question: What seems to be happening is that perl inlines the subroutine. See:

    use strict; use warnings; package Foo; sub new { my $class = shift; return bless( sub { print "Hello\n" }, $class ); } sub DESTROY { print "DESTROYing $_[0]\n"; return; } package main; my $object = Foo->new; print "Created $object\n"; undef $object; print "Ha! Ha! Still there!\n"; { no strict 'refs'; my $symbol_table = \%{'Foo::'}; delete $symbol_table->{'new'}; } print "Done.\n";
    # Created Foo=CODE(0x82b682c) # Ha! Ha! Still there! # DESTROYing Foo=CODE(0x82b682c) # Done.
      Great answer. Thanks.
      -- gam3
      A picture is worth a thousand words, but takes 200K.

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://818990]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others chilling in the Monastery: (4)
As of 2025-07-14 15:29 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found

    Notices?
    erzuuliAnonymous Monks are no longer allowed to use Super Search, due to an excessive use of this resource by robots.