Variable type according to declared location
class Variables {
//Class Area
int iv;//Instance Variable
static int cv;//Class Variable (static variable, sharing variable)
//Method Area
void method () {
int lv = 0;//Local Variable
}
}Last updated