我的代码如下所示:
public Flight{
String code;
char status;
char type;
Flight(String code, char status, char type){
this.code = code;
this.status = status;
this.type = type;
}
}
public Menu{
Flight flight1 = new Flight("DL123",'A','D');
Flight flight2 = new Flight("DL146",'A','I');
flightMap.put("DL123", flight1)
flightMap.put("DL146", flight2)
}
if(schedule.flightMap.containsKey(decision))
{
}
如果用户输入 DL123 并且 containsKey 返回 true,我只想返回flight1的对象属性。我怎么能做到这一点?我尝试过覆盖 toString 但因为 toString 只能作为字符串返回,所以我不知道如何返回作为字符的状态和类型属性。
请询问您是否需要更多信息!