我有2个类(PhoneCall,SMS),它们扩展了另一个类(Communication)。在不同的类(注册表)中,我有一个ArrayList承载所有传入的通信,包括电话和短信。我的作业要求我创建一个方法,该方法返回持续时间最长的电话(PhoneCall类的属性)。因此,当我通过通讯运行ArrayList时,出现一个错误,提示无法解析PhoneCall类中存在的方法getCallDuration()。

public PhoneCall getLongestPhoneCallBetween(String number1, String number2){
    double longestConvo=0;
    for(Communication i : communicationsRecord){
        if(i.getCommunicationInitiator()==number1 && i.getCommunicationReceiver()==number2){
            if(i.getCallDuration()>longestConvo){
            }


        }
    }
    return null;
}


因此,该程序未在“通信类”中找到该方法,而是在其子类之一中。
我真的不知道该如何进行。如果有人可以帮助我,那将非常好。

最佳答案

将内部检查更改为:

if (i instanceof PhoneCall) {
    PhoneCall phoneCall = (PhoneCall) i;
    if (phoneCall.getCallDuration() > longestConvo) {
         // Do what you need to do..
    }
}

09-04 04:22