Java中的全局变量
回答:
要定义全局变量,你可以使用静态关键字
public class Example { public static int a;
public static int b;
}
现在你可以通过调用从任何地方访问a和b
Example.a;Example.b;
以上是 Java中的全局变量 的全部内容, 来源链接: utcz.com/qa/408468.html
要定义全局变量,你可以使用静态关键字
public class Example { public static int a;
public static int b;
}
现在你可以通过调用从任何地方访问a和b
Example.a;Example.b;
以上是 Java中的全局变量 的全部内容, 来源链接: utcz.com/qa/408468.html