in reply to Making an Existing Class a Singleton
Here's the new method from Class::Accessor:
sub new { my($proto, $fields) = @_; my($class) = ref $proto || $proto; $fields = {} unless defined $fields; # make a copy of $fields. bless {%$fields}, $class; }
If you haven't defined a new method of your own, that's what you're using. In that case, you can just write your own, based on that, to be something like this:
my $singleton; sub new { my($proto, $fields) = @_; my($class) = ref $proto || $proto; if ( ! defined $singleton ) { $fields = {} unless defined $fields; # make a copy of $fields. $singleton = bless {%$fields}, $class; } return $singleton; }
After that, you should be able to use it as usual with the caveat that after the first time the object is created, subsequent attempts to create it will not have the arguments to new honored. That is, if you do this:
my $c1 = C->new( foo => 'bar' ); my $c2 = C->new( foo => 12345 );
...then $c2->{foo} will still be 'bar'. If you're not passing any arguments to new, this won't be a problem.
If you've written your own new instead of using the one from Class::Accessor, you can adapt it in a similar way.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: Making an Existing Class a Singleton
by friedo (Prior) on Jan 23, 2008 at 16:57 UTC | |
|
Re^2: Making an Existing Class a Singleton
by moritz (Cardinal) on Jan 23, 2008 at 17:06 UTC | |
|
Re^2: Making an Existing Class a Singleton
by agianni (Hermit) on Jan 23, 2008 at 18:26 UTC |