Everything in Java is an object (as what is said). Then what are primitive data types?
|
closed as not a real question by Joachim Sauer, Caspar Kleijne, Tim Post♦ Mar 11 '11 at 6:55
It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.
|
If you read an official description of the Java language: http://java.sun.com/docs/white/langenv/Object.doc.html you will find that it says:
|
|||||
|
|
I've yet to find a strict, useful definition of what "pure OOP" means that people can agree on. Lacking such a definition we can't really say if any language is pure OOP. Regarding "Everything in Java is an object": that's simply not true. There are many things in Java that are not objects. Variables are not object (they are references), primitive values are not objects, methods are not objects (they don't have properties), ... |
|||
|
|
|
Primitive datatypes are those which are not objects : (Well, not everything is an object, in Java) |
|||
|
|