JAVA Data Types
Types Of Datatype:
• Primitive data types - includes byte, short, int, long, float, double and boolean, etc...
• Non-primitive data types - such as String, Arrays and Classes
Data Type | Size |
byte | 1 byte |
short | 2 bytes |
int | 4 bytes |
long | 8 bytes |
float | 4 bytes |
double | 8 bytes |
Boolean | 1 bit |
char | 2 bytes |
Primitive Data Types
1. Byte
The byte data type can store whole numbers.
Example:
byte myNum = 100;
System.out.println(myNum);
2. Short
The short data type can store whole numbers.
Example:
short myNum = 5000;
System.out.println(myNum);
3. Int
The int data type can store whole numbers.
Example:
int a = 10;
4. Long
The long data type can store whole numbers. This is used when int is not large enough to store the value. Note that you should end the value with an "L":
Example:
long myNum = 15000000000L;
System.out.println(myNum);
5. Float
You should use a floating point type whenever you need a number with a decimal, such as 9.99 or 3.14515.
The float data types can store fractional numbers. Note that you should end the value with an "f" for floats.
Example:
float myNum = 5.75f;
System.out.println(myNum);
6. Double
float
and is commonly used for scientific calculations and when higher accuracy is needed.Example:
double myNum = 19.99d;
System.out.println(myNum);
6. Boolean
Java has a boolean data type, which can only take the values true or false:
Example:
boolean isJavaFun = true;
boolean isFishTasty = false;
System.out.println(isJavaFun); // Outputs true
System.out.println(isFishTasty); // Outputs false
Characters
The char data type is used to store a single character. The character must be surrounded by single quotes, like 'A' or 'c':
Example:
char myGrade = 'B';
System.out.println(myGrade);
Non-Primitive Data Types
Non-primitive data types are called reference types because they refer to objects rather than storing the actual value directly. They are created using constructors or by defining a class. Unlike primitive types, non-primitive types can store complex structures and data.
1. String
Example:
String model; 4. Interface
A reference type that defines abstract methods for other classes to implement.
Example: