in reply to Re: Perl fan being tempted with Python
in thread Perl fan being tempted with Python
What's not native about Perl's OO?Answer:
bless({}, $class);
The fact that you have to build your own objects reusing other bricks, and some spit named bless gives a strong impression that OO is bolted on to Perl, and not native. A Larry has said, OOP was an experiment in how minimalist one could design OO.
The syntactical sugar for calling methods doesn't make objects "native". There's no object type in Perl, I can't subclass integers or arrays (unless you call the 'tie' mechanism 'subclassing').
I'd call OO in Perl workable. But not native.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^3: Perl fan being tempted with Python
by ikegami (Patriarch) on Jun 17, 2005 at 14:55 UTC | |
by Fletch (Bishop) on Jun 17, 2005 at 16:54 UTC |