如何使皮卡既显示载人又显示载客
if(is==1){
for(Didi currentCar:carsForRent){
if(currentCar instanceof PassengerCar){
System.out.println(""+i+"\t"+currentCar.getName()+"\t"+currentCar.getRentm()+"元/天"+"\t"+currentCar.getTake()+"人");
i++;
}
else{
System.out.println(""+i+"\t"+currentCar.getName()+"\t"+currentCar.getRentm()+"元/天"+"\t"+currentCar.getTon()+"吨");
i++;
}
}
} 做到这一步 程序没问题 就是不知道如何让皮卡那一栏既显示载人 又显示载客