Beefy Boxes and Bandwidth Generously Provided by pair Networks
P is for Practical
 
PerlMonks  

Re^4: A Class:: module I don't want to write

by Martynoff (Initiate)
on Nov 23, 2005 at 14:05 UTC ( [id://511091]=note: print w/replies, xml ) Need Help??


in reply to Re^3: A Class:: module I don't want to write
in thread A Class:: module I don't want to write

Not nessesarily. You may create an accessor as a closure over some local hashref. Then, store data in this hash with "self" object references as keys.
sub create_accessor { my $hash = {}; return sub { # accessor my ($self, $value) = "_æ return $value ? $hash{$self} : $hash{$self} = $value; } }
This sub will return an accessor, storing value without knowing anything of object structure :)

--
Sergey Martynoff

Replies are listed 'Best First'.
Re^5: A Class:: module I don't want to write
by Perl Mouse (Chaplain) on Nov 23, 2005 at 14:38 UTC
    Beside a memory leak, there's the possibility of a subtle bug. I had to modify your code slightly, but consider the following class:
    use strict; use warnings; package Class::SomeMethodMaker; sub create_accessor { my %hash = (); return sub { my ($self, $value) = @_; $hash{$self} = $value if @_ > 1; return $hash{$self}; } } package MyClass; { no strict 'refs'; *{"MyClass::colour"} = Class::SomeMethodMaker::create_accessor; } sub new {bless {}, shift} 1; __END__
    It's a simple class with a single accessor.

    Now I use this class in the following way:

    use strict; use warnings; use MyClass; for my $colour (qw /green yellow/) { my $obj = MyClass->new; $obj->colour($colour) unless $obj->colour; print $obj->colour, "\n"; } __END__
    You would expect it to print green\nyellow\n. However, it prints green\ngreen\n. The problem is that references are unique - but only references that exist at the same moment in time. References are not necessarely unique over time - they may be reused. Your technique only works if you do some work at DESTROY time - and that makes it trickier.
    Perl --((8:>*

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others contemplating the Monastery: (4)
As of 2024-04-19 17:15 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found