Java Data Types

Java Data Types

Java is a strongly typed language. Everything you see or write in java have particular type. Like, for numeric data, we usually use int or Long data type or for text based data we use String data type. We can consider there are two types of data types. One is primitive type and another one is non-primitive or object type. The non-primitive type usually user defined types.

Java Data Types

  • Primitive Data Type:
  • Non-primitive or User Defined Type:

Java Primitive Data Types

There are total 8 built in primitive types in java. Below, I present them with possible description.

Data TypesRangeDescription
byte1 byte stores numeric values and the storage range is -2^7 to 2^7-1 (-128 to 127)
short2 bytestores numeric values and the storage range is -2^15 to 2^15-1 (-32,768 to 32,767)
int4 bytesstores numeric values and the range is -2^31 to 2^15-1 (-2,147,483,648 to 2,147,483,647)
long8 bytesstores numeric values and the size is -2^63 to 2^63-1 (-9,223,372,036,854,775,808 to 9,223,372,036,854,775,807)
float4 bytesstores decimal number up to 6-7 decimal digits
double8 bytesstores decimal number up to 15 decimal digits
boolean1 bitstores only true or false value
char2 bytesstores single character/letter or ASCII values

Non Primitive Data Types

There are few built in non-primitive data types also available and we can also create our own user defined data types. Non primitive data types are: Strings, Arrays, Classes and Objects, Interface, Records and all user defined objects or types.

Difference Between Primitive and Non-primitive Data Types

  • Primitive is predefined and already reserved on the language itself, on the other hand non-primitives are user defined.
  • Java Primitive types are in fixed size but there is no size or capacity limit of non-primitive types
  • The memory allocation is stack for primitive data types, otherwise it is the heap memory area for non-primitive data types.
  • Primitive doesn't support null value and always have a default value but non-primitive data types default value is null.
  • primitive data types are used for handling simple task (such as,numbers, boolean, characters etc.) and non-primitives are used to handle complex task (such as, objects, arrays, Strings etc.). Though, non-primitives are also built with the combination of primitives.
  • primitive stores data directly but non-primitive types store references in the location of data value.