If variable is declared as : public static var_name;
then I can access it from everywhere as ClassName.var_name
I am also aware of the static members are shared by all the instances of a class and not reallocated separately of each instance
Is declaration private static var_name; makes any deference from the declaration private var-name; ?
As it neither can be accessed as ClassName.var_name nor as ClassInstance.var_name from any other class
Does this variable will posses any other special property apart from being only private ?
Because in both the cases it is only accessible within class
