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


in reply to Re: Re: Re: Re: Re: Re: Re: Re: Teach him a lesson with facts
in thread Teach him a lesson with facts

One problem with Perl OO is that it does not deliver everything OO requires in theory. That we all see it, and I saw you agreed.

Actually, what I said was "It lacks useful things like direct support for private methods/attributes. However, these can be implemented using other language features. It's rarely an issue in real world code in my experience." (my emphasis).

Perl's OO model has good and bad points. Personally I prefer Perl's OO and dynamic typing to Java's lack of multiple-implementation inheritance and lack of generic classes.

I'm not anti-strong typing. When done well (e.g. Eiffel) it can be a god send. With Java's lack of generics it can be a complete pain.

Another big problem I see with Perl OO is that, becasue of Perl OO is usually implemented as hash, and Perl hash takes lots of memory, this "bad" combination actually make things worse.

If memory is an issue. Like speed it often isn't. When it is, there are alternate mechanisms for representing objects. I have never had memory problems due to using hashes as objects.

I think something need to be done about this, before Perl's OO can be 100% accepted by me, actually not just me ...

Perl 6 will be providing most of what is "hard" to do directly in Perl 5.

If you're unhappy with Perl 5's "default" OO model you have the flexibility to write your own. Witness such neat modules as Class::Contract.