Java have primitive data types which doesn't derive from object like in Ruby. So can we consider java as 100% object oriented language ? Another question : Why java doesn't design primitive data types as object way ?
|
1
|
|||||||||||||||||
|
|
|
When Java first appeared (versions 1.x) the JVM was really, really slow. Not implementing primitives as first-class objects was a compromise they had taken for speed purposes, although I think in the long run it was a really bad decision. "Object oriented" also means lots of things for lots of people. You can have class-based OO (C++, Java, C#), or you can have prototype-based OO (Javascript, Lua). 100% object oriented doesn't mean much, really. Ruby also has problems that you'll encounter from time to time. What bothers me about Java is that it doesn't provide the means to abstract ideas efficiently, to extend the language where it has problems. And whenever this issue was raised (see Guy Steele's "Growing a Language") the "oh noes, but what about Joe Sixpack?" argument is given. Even if you design a language that prevents shooting yourself in the foot, there's a difference between accidental complexity and real complexity (see No Silver Bullet) and mediocre developers will always find creative ways to shoot themselves. For example Perl 5 is not object-oriented, but it is extensible enough that it allows Moose, an object system that allows very advanced techniques for dealing with the complexity of OO. And syntactic sugar is no problem. |
||
|
|
|
|
To get to true 100% OO think Smalltalk for instance, where everything is an object, including the compiler itself, and even |
||
|
|
|
Java, for the reason you mentioned, having primitives, doesn't make it a purely object-oriented programming language. However, the enforcement of having every program be a class makes it very oriented toward object-oriented programming. Ruby, as you mentioned, and happened to be the first language that came to my mind as well, is a language that does not have primitives, and all values are objects. This certainly does make it more object-oriented than Java. On the other hand, to my knowledge, there is no requirement that a piece of code must be associated with a class, as is the case with Java. That said, Java does have objects that wrap around the primitives such as (Large, of course is relative. I can't remember the exact numbers, but an object overhead was around 50-100 bytes of memory. Definitely more than the minimum of several bytes required for primitive values) Today, with many desktops with multiple gigabytes of memory, the overhead of objects are less of an issue. |
||||||
|
|
|
No. Javascript, for example, is. What would those Integer and Long and Boolean classes be written in? How would you write an ArrayList or HashMap without primitive arrays? |
||||||
|
|
|
Java is not 100% OO. Java may going towards 99% OO (think of auto-boxing, Scala). I would say Java is now 87% OO.
Back in the 90's there were Performance reasons and at the same time Java stays backward compatible. So they cannot take them out. |
||||||||||||||||
|
|
|
No.
Mainly for performance reasons, possibly also to be more familiar to people coming from C++. |
||
|
|
|
|
This is one of those questions that really only matters in an academic sense. Ruby is optimized to treat ints, longs, etc. as primitives whenever possible. Java just made this explicit. If Java had primitives be objects, there would be IntPrimitive, LongPrimitive, etc (by whatever name) classes. which would most likely be final without special methods (e.g. no IntPrimitive.factorial). Which would mean for most purposes they would be primitives. |
||
|
|
|
|
One reason Java can't obviously do away with non-object primitives (
On second thoughts, we know Java maintains internal data per object (locks, etc.). Maybe we could define Remaining issues: Constants -- but these can be dealt with similarly to strings. Operators are just syntactical sugar and Ultimately I think the justification for primitives is efficiency: the static analysis needed to determine that an |
||
|
|
|
|
Java clearly is not 100% OO. You can easily program it in a procedural style. Most people do. It's true that the libraries and containers tend not to be as forgiving of this paradigm. |
||
|
|
|
|
"Why java doesn't design primitive data types as object way ?" At Sun developer days, quite a few years ago I remember James Gosling answering this. He said that they'd liked to have totally abstracted away from primitives - to leave only standard objects, but then ran out of time and decided to ship with what they had. Very sad. |
||
|
|
