Okay so I was wondering if lets say I make a class called AdultClass and in that class I make a static integer like "public static int whatEver;". After this i make two subclasses ChildClass1 and ChildClass2, now both classes has inherited the static integer, but if i change that integer in ChildClass1 does this affect ChildClass2 since both classes comes from the AdultClass or are they seperated?

