1.重写前:
package test;
public class Test{
int value;
public Test() {
System.out.println("hello,world");
}
public static void main(String[] args)
{
Test t=new Test();
t.value=1;
System.out.println(t);
}
}
2.重写后