Difference between static and global variable in Java

后端 未结 5 879

I am new to Java programming. Can anyone tell what is the difference between global and local variable in Java?

5条回答
  •  太阳男子
    2020-12-18 18:03

    Global and static variables are very similar . The only difference being static variables may be public or private . A public static variable is a global variable in java .

    Local variables are specific to a method or a class.Their scope is restricted to the specified method or class.

提交回复
热议问题