Pravin
•
Sep 15
•
in Java Basics
• 10 min read
Data Types in Java
All the data types in Java have been categorized into two, primitive data types
and the reference data types.
The primitive types, also known as built-in types, are byte, short, int, long,
float, double, char and boolean.
The re...