As others may have pointed out, the problem with pseudohashes is that if you do ever want to override what happens when a property is retrieved or set, you need to use tie.
Class::Tangram has been designed with OO considerations like this in mind.
With Class::Tangram, accessing properties becomes method calls; you don't worry about spelling hash properties wrong, because when you define extra accessors and mutators, you may call the generated ones via ::SUPER;
package MyClass;
use base qw(Class::Tangram);
our $fields = { int => [ qw(a b c d e) ] };
sub set_b {
my $self = shift;
my $new_b = shift;
$self->SUPER::set_b($new_b + 3);
}
package main;
my $foo = MyClass->new( a => 1, b => 2 );
print $foo->a; # prints 1
print $foo->b; # prints 5
Note that the set_b method would have been called regardless of whether you called it directly, or used the alternate ways to set the attribute;
$foo->b(4); # note: prints warning
$foo->set_b(4);
This is all achieved without ugly AUTOLOAD kludges.
$h=$ENV{HOME};my@q=split/\n\n/,`cat $h/.quotes`;$s="$h/."
."signature";$t=`cat $s`;print$t,"\n",$q[rand($#q)],"\n";
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.
|
|