public static void main(String[] args) throws Exception{
Student stu=new Student("2334","张三",10);
System.out.println(stu);}
对于重写Object的toString()方法,直接写完是不会自动调用的。当你用输出语句的时候就会默认执行这个toString()方法。要是想在student类中执行的话,你得写测试方法。因为现在这个类还没有程序入口。