I am trying to use static blocks like this:
I have a base class called Base.java
Base.java
public class Base { static public int myVar; } >
There is a single copy of myVar and both parent and child class will share the same. Untill and unless child class get initilized.
myVar