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

Re: Re: Re: Re: Ruby: An Abbot breaks silencewind

by gildir (Pilgrim)
on Jun 11, 2001 at 18:59 UTC ( [id://87517]=note: print w/replies, xml ) Need Help??


in reply to Re: Re: Re: Ruby: An Abbot breaks silencewind
in thread Ruby: An Abbot breaks silencewind

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.

Replies are listed 'Best First'.
Re (tilly) 5: Ruby: An Abbot breaks silencewind
by tilly (Archbishop) on Jun 11, 2001 at 19:56 UTC
    What you want is trivial to do:
    package Logger; my %instance; sub instance { my $class = shift; return $instance{$class} ||= bless {@_}, $class; }
    As for Java's type system, I am not so convinced it is a win. A few articles for thought, Java is untyped, late binding is good, and strong typing.

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others taking refuge in the Monastery: (3)
As of 2024-04-20 03:34 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found