如何在Java中定义全局变量?
要定义全局变量,你可以使用静态关键字
public class Example { public static int a; public static int b; }
现在你可以通过调用从任何地方访问a和b
Example.a; Example.b;