Why aren't Java primitive data types just called "Java data types"?
|
Because Java has more data types than just primitives. The primitive data types are:
A data type that is a non-primitive is a reference data type, which are references to objects. Some examples are:
Here is a simple example of the difference between the two types:
|
|||||||||||||||
|
|
Because there are two categories of types in Java. From the Java Language Specification, CHAPTER 4: Types, Values, and Variables: The types of the Java programming language are divided into two categories: primitive types and reference types. The primitive types (§4.2) are the |
|||
|
|
|
Because reference types can also be considered data types. Primitives are considered value types. Both can be considered a data type. |
|||
|
|
|
To understand why, I think you need to look at programming languages other than Java. For example:
So, my understanding is that Java data types are described as "primitive data types" to put them into the context of other languages. They are "data types" in the sense that they have no object identity, and they are "primitive" in the sense that the specific types are defined by (and fundamental to) the Java language. |
|||
|
|
|
Non primitive types are called java reference types and they have name starting with capital letter. Eg: Integer, Float etc. For non primitives we can create the instances. |
|||
|
|
