class Index
{
String a1;
int b1;
}
class Demo
{
public static void main(String[] args)
{
String a2;
int b2;
Index p=new Index();
System.out.println(p.a1+"...."+p.b1);//程序显示的是null和0
System.out.println(a2+"...."+b2);//没有赋值,不能打印
}
}
上面的程序中中我知道a1和b1是对象的一建立就赋给默认值了,但是为什么java虚拟机在调用主函数的时候却没有给a2和b2赋默认值啊,有什么区别吗, |
|