- public class Test
- {
- static int x;//成员变量
- static boolean boo;//成员变量
- static String str;//成员变量
- public static void main(String[] args) {
- System.out.println(x);//打印结果为0
- System.out.println(boo);//结果为false
- System.out.println(str);//结果为null
-
- int i;
- System.out.println(i);//编译失败
-
- }
- }
复制代码 成员变量有默认初始化值,而局部变量需要先初始化,后使用 |