Types of Variable
Variables:
Variables is container to store a value.
1. Instance Variable:
The Value of the variable change object to object called as an instance variable.
Syntax:
class Employee{
String name;
int id;
}
The Instance variable can not be declared ...
vinitrokade.hashnode.dev3 min read