|
Acme::Damn - 'Unbless' Perl objects. |
Acme::Damn - 'Unbless' Perl objects.
use Acme::Damn;
my $ref = ... some reference ... my $obj = bless $ref , 'Some::Class';
... do something with your object ...
$ref = damn $obj; # recover the original reference (unblessed)
... neither $ref nor $obj are Some::Class objects ...
Acme::Damn provides a single routine, damn(), which takes a blessed reference (a Perl object), and unblesses it, to return the original reference. I can't think of any reason why you might want to do this, but just because it's of no use doesn't mean that you shouldn't be able to do it.
By default, Acme::Damn exports the method damn() into the current namespace. Aliases for damn() (see below) may be imported upon request.
die with an error.
Not everyone likes to damn the same way, so Acme::Damn offers a list of aliases for damn() that may be imported upon request:
use Acme::Damn qw( unbless );
The following aliases are supported:
Just as bless doesn't call an object's initialisation code, damn doesn't
invoke an object's DESTROY method. For objects that need to be DESTROYed,
either don't damn them, or call DESTROY before judgement is passed.
Thanks to Claes Jacobsson <claes@surfar.nu> for suggesting the use of aliases.
bless, the perlboot manpage, the perltoot manpage, the perltooc manpage, the perlbot manpage, the perlobj manpage.
Ian Brayshaw, <ian@onemore.org>
Copyright 2003 by Ian Brayshaw
This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself.
|
Acme::Damn - 'Unbless' Perl objects. |