Can non-static methods modify static variables

前端 未结 9 2097
猫巷女王i
猫巷女王i 2020-11-29 01:53

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

9条回答
  •  庸人自扰
    2020-11-29 02:14

    Non static methods can access static variables. Static methods can access only static variables or methods directly without creating object.ex:public static void main(String arg[])

提交回复
热议问题