数组 kids 是一个 Infant 类型的数组,已经用 Infant 对象声明和初始化。编写一个循环,在列中打印 kids 数组中所有婴儿的姓名。
这是婴儿班。。
public class Infant{
private String name;
private int age; // in months
public Infant(String who, int months){
name = who;
age = months;
}
public String getName(){return name;}
public int getAge(){return age;}
public void anotherMonth(){age = age + 1;}
}
我试过的代码是
for (int j = 0; j<kids.length; j++) {
System.out.println(kids.getName());
}