Beefy Boxes and Bandwidth Generously Provided by pair Networks
Perl-Sensitive Sunglasses
 
PerlMonks  

Re: Ruby: An Abbot breaks silencewind

by Abigail (Deacon)
on Jun 11, 2001 at 11:59 UTC ( [id://87418]=note: print w/replies, xml ) Need Help??


in reply to Ruby: An Abbot breaks silencewind

While I think Perl's OO is rotten to the core, I don't agree that making singletons in Perl is difficult. You certainly don't need the convoluted code you showed!
package Logger; { my $instance; sub instance { return $instance if $instance; my $class = shift; $instance = bless {@_} => $class; } }

-- Abigail

Replies are listed 'Best First'.
Re: Re: Ruby: An Abbot breaks silencewind
by coreolyn (Parson) on Jun 11, 2001 at 14:33 UTC

    As I didn't trust my own rolling of a Perl Singleton I grabbed that code directly from from CPAN's Singleton.pm. Though I'm guessing that the use of the Trinary in the CPAN version might give a performance boost over the clearer functionality your code expresses.

    coreolyn
Re: Re: Ruby: An Abbot breaks silencewind
by gildir (Pilgrim) on Jun 11, 2001 at 12:17 UTC
    This won't work for classes inherited from Logger. They all get the same instance unless they override instance method. That is genealy not desirable.

      Isn't that why it's called a singleton?

      coreolyn
        Consider this:

        I have two classes: Logger::Local and Logger::Remote. Each of them implements log method in a different way. One appends message to local file, the other send a message to remote server. I want these two classes to have the same interface, so I create abstract superclass Logger that will define such an interface. This superclass also provides some common methods (for example method instance).

        In your scenario call to Logger::Local->instance may return instance of Logger::Remote class, which is aparently not desired here. The class returned is not even superclass nor subclass of Logger::Local and the interface could not match. The fact that Perl is not typed language and does not enforce interface checks like Java does does not mean that all OO good practice should be abandoned.

        Better way is to have such instance method that allways returns instance of class that it has been called upon. And when some 'class agregation' is desired, it should be done explicitly be overriding this method.

Log In?
Username:
Password:

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

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

    No recent polls found