if u want to maintain an information common to ur class, then mark that information as static ,
note : information may be static method or static variable
why it is common information?
Ans: becoz it is not specific to object, ie object won't have its own copy of static variable , instead all objects will point to the static information,thats why it is common information
so any object change that information ,will reflect to all other object