作者: 王靖远 时间: 2013-6-21 12:36
前面那个构造函数应该这样写 Test(){ System.out.println(i);} 你把Test()漏掉了作者: askyle 时间: 2013-6-21 12:58
大哥 你思路好乱而且代码写好乱 ,格式又不对!作者: askyle 时间: 2013-6-21 13:01
class Demo
{
public static void main(String[] args)
{
Test t = new Test();
}
}
class Test
{
private int i =10;//私有类