发布网友 发布时间:2022-05-18 07:29
共1个回答
热心网友 时间:2023-10-11 08:07
你的Resident类是什么样的,里面重载了toString()方法没有。追答那就要看你的resident类是什么样的咯
例如说你的resident类是这样的:
public class Resident{
String ID;
String text;
public Resident(){
this.ID="1";
this.text="test";
}
//可以这样重载toString()
public String toString(){
return "ID="+this.ID+",text="+this.text;
}
}
main方法中:
Resident r=new Resident();
System.out.println(r);//这里r就会自动调用r.toString(),最后打印结果为 " ID=1,text=test"