CoreJava Day2
CoreJava Day2
Variables are nothing but reserved memory locations to store values. This means that when you
create a variable you reserve some space in memory.
Based on the data type of a variable, the operating system allocates memory and decides what can
be stored in the reserved memory. Therefore, by assigning different data types to variables, you can
store integers, decimals, or characters in these variables.
There are eight primitive data types supported by Java. Primitive data types are predefined by the
language and named by a keyword. Let us now look into detail about the eight primitive data types.
byte:
Default value is 0
Byte data type is used to save space in large arrays, mainly in place of integers, since a byte is four
times smaller than an int.
Example: byte a = 100 , byte b = -50
short:
Short data type can also be used to save memory as byte data type. A short is 2 times smaller than
an int
Default value is 0.
int:
Int is generally used as the default data type for integral values unless there is a concern about
memory.
long:
float:
Float is mainly used to save memory in large arrays of floating point numbers.
Default value is 0.0f.
Float data type is never used for precise values such as currency.
double:
This data type is generally used as the default data type for decimal values, generally the default
choice.
Double data type should be used for precise values such as currency.
boolean:
This data type is used for simple flags that track true/false conditions.
char: