Yes. The basic technique is to create a new package which inherits from the old one but adds some new methods, then rebless the object into that new package. Here's a quick example:
use 5.010;
use Math::BigInt;
# quite big!!
my $seven = Math::BigInt->new('7');
# $seven cannot "speak", so this warns
eval { $seven->speak } or warn $@;
{
package Math::BigInt::Speaker;
our @ISA = qw(Math::BigInt);
use Scalar::Util qw(blessed);
use Carp qw(confess);
sub upgrade {
my ($class, $instance) = @_;
confess "can only upgrade Math::BigInt objects"
unless blessed $instance && $instance->isa('Math::BigInt')
+;
bless $instance => $class;
}
sub speak {
CORE::say($_[0]);
}
}
# Swaps $seven into our new class.
Math::BigInt::Speaker->upgrade($seven);
# $seven can now "speak"
eval { $seven->speak } or warn $@;
If you use Moose you can do this in a much nicer and more organised way. (Though it's basically the same thing happening under the hood.) You'd just create a new anonymous role, and apply that role to the object.
use 5.010;
use Math::BigInt;
use Moose ();
# quite big!!
my $seven = Math::BigInt->new('7');
# $seven cannot "speak", so this warns
eval { $seven->speak } or warn $@;
my $speaker = Moose::Meta::Role->create_anon_role(
methods => {
speak => sub { CORE::say($_[0]) },
},
);
Moose::Util::apply_all_roles($seven, $speaker);
# $seven can now "speak"
eval { $seven->speak } or warn $@;
perl -E'sub Monkey::do{say$_,for@_,do{($monkey=[caller(0)]->[3])=~s{::}{ }and$monkey}}"Monkey say"->Monkey::do'
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
Outside of code tags, you may need to use entities for some characters:
| |
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.
|
|