Chapter 3-Static Variables, Meth
Chapter 3-Static Variables, Meth
--->
The static keyword belongs to the class than an instance of
the class.
We can apply static keyword with variables, methods, blocks
and nested classes.
}
}
Output:
-------> 15 28 22 28
class StaticDemo2
{
public static void main(String[] args)
{
int x = 20;
System.out.println(x);
}
static
{
int x = 10;
System.out.print(x + " ");
}
}
Output:
-------> 10 20