你的格式有问题,不能编译运行
class Point {
int x;
boolean y;
void output() {
System.out.println(x);
System.out.println(y);
}
}
public class Test_02{
public static void main(String[] args) {
Point pt = new Point();
pt.output();
}
}
答案是C。0,false。
成员变量中,基本数值类型默认值是0,boolean默认是false。
局部变量中,未赋值就会报错。 |