集合中有自定义类, 打印集合的各个元素, 代码如下:public class Te {
public static void main(String[] args) {
Collection c= new ArrayList();
c.add(new Person1(23,1001));
System.out.println(c);
}
}
class Person1{
int age;
int id;
public Person1(int age, int id) {
super();
this.age = age;
this.id = id;
}
}我的运行结果是内存地址:[sxt.zzy.Person1@15db9742]如何使运行结果体现成员变量的值, 如Person1 [age=23, id=1001]
添加回答
举报
0/150
提交
取消