vote up 0 vote down star
1

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 ?

flag

74% accept rate
3  
Is this homework? It sounds like a homework question to me. – Scott Wisniewski Jun 10 at 9:40
2  
Does it matter? – Gishu Jun 10 at 9:56
1  
It does a little bit Gishu. There's an (unofficial?) homework 'policy' on SO. For example, you should answer homework questions differently, e.g. not give the questioner a complete answer, but more pointers in the right direction, usefull links, etcetera. – Razzie Jun 10 at 10:00
@Razzie - The answers tend to be quite comprehensive contrary to 'SO policy' - See the accepted answer in this instance. – Gishu Jun 10 at 10:44
The homework "policy" that Razzie refers pertains when people simply ask for the code to be written for them (and not really for this question.) In these give-me-code cases hints, pointers, links, are more appropriate. – basszero Nov 11 at 12:32

10 Answers

vote up 9 vote down check

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.

link|flag
vote up 6 vote down

To get to true 100% OO think Smalltalk for instance, where everything is an object, including the compiler itself, and even if statements: ifTrue: is a message sent to a Boolean with a block of code parameter.

link|flag
+1 for citing ifTrue: – dfa Jun 10 at 10:10
vote up 2 vote down

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 Integer, Boolean, Character and such. The reason for having primitives is probably the reason given in Peter's answer -- back when Java was introduced in the mid-90's, memory on systems were mostly in the double-digit megabytes, so having each and every value be an object was large overhead.

(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.

link|flag
1  
In ruby when you're declaring a method or a variable outside of a class, it is implicitly added to Kernel, the main object. Wrapping all methods inside classes doesn't make it more OO. – Alexandru Nedelcu Jun 10 at 10:04
@Alexandru Nedelcu: Ah, thank you for the information :) And also, it's quite true that just because one wraps code in classes doesn't make it object-oriented. It's easy to write procedural code in a object-oriented programming language. – coobird Jun 10 at 10:08
vote up 0 vote down

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?

link|flag
Ruby have all the data types (primitive and non primitive) as objects. Still ruby have arraylist, hashmap and arrays. – Silent Warrior Jun 10 at 9:40
They are built-in; you can't make your own arraylist as efficient as built-in one. That's a trade-off. – alamar Jun 10 at 9:46
JavaScript has primitives too (numbers, strings, booleans, null, and undefined). – Jason Orendorff Dec 4 at 23:14
vote up 0 vote down

Java is not 100% OO. Java may going towards 99% OO (think of auto-boxing, Scala). I would say Java is now 87% OO.

Why java doesn't design primitive data types as object way ?

Back in the 90's there were Performance reasons and at the same time Java stays backward compatible. So they cannot take them out.

link|flag
2  
I'm glad to hear you've got the exact figure. – Matthew Flaschen Jun 10 at 9:47
2  
87%? reminds me of: dilbert.com/strips/comic/2008-05-08 – Razzie Jun 10 at 9:48
1  
But they are wrong! Java is obviously 88.4% OO. – Neil Butterworth Jun 10 at 9:49
that downvote trigger-finger is itchy again? I don't get why people downvote to below zero without giving an explanation... – fretje Jun 10 at 9:49
Any source on those performance reasons back in the 90's btw? – Razzie Jun 10 at 9:49
show 6 more comments
vote up 0 vote down

So can we consider java as 100% object oriented language?

No.

Another question : Why java doesn't design primitive data types as object way?

Mainly for performance reasons, possibly also to be more familiar to people coming from C++.

link|flag
vote up 0 vote down

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.

link|flag
vote up 0 vote down

One reason Java can't obviously do away with non-object primitives (int, etc.) is that it does not support native data members. Imagine:

class int extends object
{
    // need some data member here.  but what type?
    public native int();
    public native int plus(int x);
    // several more non-mutating methods
};

On second thoughts, we know Java maintains internal data per object (locks, etc.). Maybe we could define class int with no data members, but with native methods that manipulate this internal data.

Remaining issues: Constants -- but these can be dealt with similarly to strings. Operators are just syntactical sugar and + and would be mapped do the plus method at compile time, although we need to be careful that int.plus(float) returns float as does float.plus(int), and so on.

Ultimately I think the justification for primitives is efficiency: the static analysis needed to determine that an int object can be treated purely as JVM integer value may have been considered too big a problem when the language was designed.

link|flag
vote up 0 vote down

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.

link|flag
vote up 0 vote down

"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.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.