赞
踩
在Java中,全局变量和局部变量是两种不同作用域的变量。
全局变量(成员变量):
public class Example {
int globalInt; // 全局变量,默认为0
String globalString; // 全局变量,默认为null
static int staticGlobalInt; // 静态全局变量,默认为0
public void method() {
System.out.println(globalInt); // 可以在类中的任何地方使用
}
public static void main(String[] args) {
System.out.println(staticGlobalInt); // 静态全局变量也可以在静态方法中使用
}
}
局部变量:
public class Example {
public void method() {
int localVar = 10; // 局部变量,必须显式初始化
System.out.println(localVar); // 可以在方法内部使用
}
}
总结:
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。