Variables and Data Types in Java
- Mahesh Bhat M
- Jun 24, 2017
- 1 min read

Variable is a name of memory location.
There are three types of variables in java: local, instance and static.
There are two types of data types in java: primitive and non-primitive.
Variable :-
Variable is name of reserved area allocated in memory. In other words, it is a name of memory location. It is a combination of "vary + able" that means its value can be changed.
int data=50;//Here data is variable
Types of Variable :-
There are three types of variables in java:
local variable
instance variable
static variable
1) Local Variable
A variable which is declared inside the method is called local variable.
2) Instance Variable
A variable which is declared inside the class but outside the method, is called instance variable . It is not declared as static.
3) Static variable
A variable that is declared as static is called static variable. It cannot be local.
We will have detailed learning of these variables in next chapters.
Example to understand the types of variables in java
class A{
int data=50;//instance variable
static int m=100;//static variable
void method(){
int n=90;//local variable
}
}//end of class
Data Types in Java :-
Data types represent the different values to be stored in the variable. In java, there are two types of data types:
Primitive data types
Non-primitive data types

Java Variable Example: Add Two Numbers
class Simple{
public static void main(String[] args){
int a=10;
int b=10;
int c=a+b;
System.out.println(c);
}}
Output: 20
Comments