I am wondering how a non static method can modify a static variable. I know that static methods can only access other static methods and static variables. However, is the ot
Static members are not instance members , these are shared by class , so basically any instance method can access these static members .