6) Data types
Data Type in Java
Datatype is a special keyword used to allocate sufficient memory space for the data, in other words Data type is used for representing the data in main memory (RAM) of the computer.
In general, every programming language is containing three categories of data types. They are
Fundamental or primitive data types
Derived data types
User defined data types.
Primitive data types
Primitive data types are those whose variables allows us to store only one value but they never allow us to store multiple values of same type. This is a data type whose variable can hold maximum one value at a time.
Example
int a; // valid
a=10; // valid
a=10, 20, 30; // invalid
Here "a" store only one value at a time because it is primitive type variable.
Derived data types
Derived data types are those whose variables allow us to store multiple values of same type. But they never allow to store multiple values of different types. These are the data type whose variable can hold more than one value of similar type. In general, derived data type can be achieving using array.
Example
int a[] = {10,20,30}; // valid
int b[] = {100, 'A', "ABC"}; // invalid
Here derived data type store only same type of data at a time not store integer, character and string at same time.
User defined data types
User defined data types are those which are developed by programmers by making use of appropriate features of the language.
User defined data types related variables allows us to store multiple values either of same type or different type or both. This is a data type whose variable can hold more than one value of dissimilar type, in java it is achieved using class concept.
Note: In java both derived and user defined data type combined name as reference data type.
In C language, user defined data types can be developed by using struct, union, enum etc. In java programming user defined datatype can be developed by using the features of classes and interfaces.
Example
Student s = new Student();
Primitive data Type
In java we have eight data Primitive type which are organized in four groups. They are
Integer category data types
Character category data types
Float category data types
Boolean category data types
Integer category data types
These category data types are used for storing integer data in the main memory of computer by allocating sufficient amount of memory space.
Integer category data types are divided into four types which are given in following table
Data Type
Size (byte)
Range
1
Byte
1
-128 to + 127
2
Short
2
-32768 to + 32767
3
Int
4
-2147483648 to +2147483647
4
Long
8
-9223372036854775808 to +9223372036854775807
Character category data types
A character is an identifier which is enclosed within single quotes. In java to represent character data, we use a data type called char. This data type takes two bytes since it follows Unicode character set.
Data Type
Size(Byte)
Range
Char
2
'\u0000' to '\uffff'
Why Java take 2 byte of memory for store character?
Java support more than 18 international languages so java take 2 bytes for characters, because for 18 international languages 1 byte of memory is not sufficient for storing all characters and symbols present in 18 languages. Java supports Unicode but c support ascii code. In ascii code only English language are present, so for storing all English latter and symbols 1 byte is sufficient. Unicode character set is one which contains all the characters which are available in 18 international languages and it contains 65536 characters
Float category data types
Float category data type are used for representing float values. This category contains two data types, they are in the given table
Data Type
Size(Byte)
Range
Number of decimal places
Float
4
+2147483647 to -2147483648
8
Double
8
+ 9.223*1018
16
Boolean category data types
Boolean category data type is used for representing or storing logical values is true or false. In java programming to represent Boolean values or logical values, we use a data type called Boolean.
Why Boolean data types take zero byte of memory?
Boolean data type takes zero bytes of main memory space because Boolean data type of java implemented by Sun Micro System with a concept of flip - flop. A flip - flop is a general purpose register which stores one bit of information (one for true and zero for false).
Note: In C, C++ (Turbo) Boolean data type is not available for representing true false values but a true value can be treated as non-zero value and false values can be represented by zero
Data Type
Default Value
Default size
boolean
False
1 bit
char
'\u0000'
2 byte
byte
0
1 byte
short
0
2 byte
int
0
4 byte
long
0L
8 byte
float
0.0f
4 byte
double
0.0d
8 byte
Last updated