代码之家  ›  专栏  ›  技术社区  ›  Leonidis Dimitris

如何在不同的类中使用特定于子类的方法?

  •  0
  • Leonidis Dimitris  · 技术社区  · 7 年前

    我有两个类(PhoneCall、SMS),它们扩展了另一个类(通信)。在另一个类(注册表)中,我有一个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;
    }
    

    因此,程序在通信类中找不到该方法,但它在其子类之一中。 我真的不知道如何继续。如果有人能帮我,那就太好了。

    2 回复  |  直到 7 年前
        1
  •  2
  •   Martin Janíček    7 年前

    将内部检查更改为:

    if (i instanceof PhoneCall) {
        PhoneCall phoneCall = (PhoneCall) i;
        if (phoneCall.getCallDuration() > longestConvo) {
             // Do what you need to do..
        }
    }
    
        2
  •  0
  •   Aniruddha Sarkar    7 年前

    您的修改源应该是:

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

    其中,检查实例是否为 PhoneCall Communication 然后将对象投射到 电话呼叫 获取特定于 电话呼叫 班此外,您必须使用 .equals(Object) 进行比较 String 课程。