http://www.perlmonks.org?node_id=87442


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

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

coreolyn
  • Comment on Re: Re: Re: Ruby: An Abbot breaks silencewind

Replies are listed 'Best First'.
Re: Re: Re: Re: Ruby: An Abbot breaks silencewind
by gildir (Pilgrim) on Jun 11, 2001 at 18:59 UTC
    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.

      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.