-
What are the non primitive data types in Java 2024?
object
byte int
Questioner:Emily Nguyen 2023-05-05 06:56:30
The most authoritative answer in 2024
-

-
Ethan Walker——Works at the International Criminal Police Organization (INTERPOL), Lives in Lyon, France.
A variable of a non-primitive type doesn't contain the value directly; instead, it is a reference (similar to a pointer) to an
object. (It is not possible in Java to create user-defined value types). Java has eight primitive types:
byte , short ,
int , long ,
char ,
boolean ,
float and double .
read more >>
About “object、byte、int”,people ask:
QuesHub is a place where questions meet answers, it is more authentic than Quora, but you still need to discern the answers provided by the respondents.