我想知道是否有办法使用循环来显示类信息。
例如,如果我创建了多个实例,如
Specimen a = new Specimen("1", "2", "3");
Specimen b = new Specimen("4", "5", "6");
和一个toString方法,它以所需的方式显示我的信息;是否有任何可能的方法来使用循环或while来打印a.toString()和b.toString()等等(c,d,e,f,g等),而不必连续输入a.toString() ,b.toString等。
目前这是我的主要方法
public static void main(String[]args){
Specimen SF11 = new Specimen("SF11", "Starfish", 10, 20 );
System.out.println(SF11.toString());
Specimen SU12 = new Specimen("SU12", "Sea Urchin", 12, 25);
System.out.println(SU12.toString());
SF11.setsCount(16); SF11.setsName("Blue Starfish"); SF11.setsTank(22);
System.out.print(SF11.toString() + "\n" + SU12.toString());
}
}