Global variables in Java

后端 未结 24 2257
青春惊慌失措
青春惊慌失措 2020-11-22 11:56

How do you define Global variables in Java ?

24条回答
  •  天命终不由人
    2020-11-22 12:43

    There are no global variables in Java, but there are global classes with public fields. You can use static import feature of java 5 to make it look almost like global variables.

提交回复
热议问题