in reply to Re: Re: Re: Teach him a lesson with facts
in thread Teach him a lesson with facts
I would be so worried if anybody agreed with me word for word - I spend so much time talking nonsense :-)
Those posts actually made me think what is the major diffence between Perl OO and Java OO.
Interesting question. For me the major differences would be:
The static vs dynamic typing also raises issues that affect OO. For example, in Perl we can trivially make containers for any object. In Java this is harder. The addition of generic classes (or whatever they're calling them) in the next Java version should make this a lot easier tho'.
1. In Java, everything is OO
Depends on your definition of everything ;-) It has a bunch of types included for efficiency reasons that aren't "objects". This can mean tedious transformations of ints to Integers, booleans to Booleans, etc.
|
---|
Replies are listed 'Best First'. | |
---|---|
Re: Re^4: Teach him a lesson with facts
by pg (Canon) on Feb 23, 2003 at 22:06 UTC |