0

equalsサブクラスのオブジェクトを使用してスーパークラスのメソッドをテストしようとしているという問題があります。

私のスーパークラスは:

public class Excluded_DateTime implements Serializable {

private Date fromDate;   
private Time fromTime;
private Date toDate;   
private Time toTime;
private Valid active;

また、サブクラスは、キーとして識別子を持つことで異なります。

public class Classifier_Excluded_DateTime implements Serializable {

private Integer classifierExcludedDateTimeNo;    
private Excluded_DateTime classifierExcludedDateTime;   

Classifier_Excluded_DateTimeしたがって、フィールドを使用せずにオブジェクトの同等性をテストしたいと思いますclassifierExcludedDateTimeNo

しかし、私が見つけたのは、スーパークラスのequalsメソッドが呼び出されることは決してないということです。

生成されたNetBeansequalshashCodeスーパークラスのメソッドは次のとおりです。

@Override
    public int hashCode() {        
        int hash = 7;
        hash = 23 * hash + (this.fromDate != null ? this.fromDate.hashCode() : 0);
        hash = 23 * hash + (this.fromTime != null ? this.fromTime.hashCode() : 0);
        hash = 23 * hash + (this.toDate != null ? this.toDate.hashCode() : 0);
        hash = 23 * hash + (this.toTime != null ? this.toTime.hashCode() : 0);
        hash = 23 * hash + (this.active != null ? this.active.hashCode() : 0);
        return hash;
    }

@Override
public boolean equals(Object obj) {        
    if (obj == null) {
        return false;
    }
    if (getClass() != obj.getClass()) {
        return false;
    }
    final Excluded_DateTime other = (Excluded_DateTime) obj;
    if (this.fromDate != other.fromDate && (this.fromDate == null || !this.fromDate.equals(other.fromDate))) {
        return false;
    }
    if (this.fromTime != other.fromTime && (this.fromTime == null || !this.fromTime.equals(other.fromTime))) {
        return false;
    }
    if (this.toDate != other.toDate && (this.toDate == null || !this.toDate.equals(other.toDate))) {
        return false;
    }
    if (this.toTime != other.toTime && (this.toTime == null || !this.toTime.equals(other.toTime))) {
        return false;
    }
    if (this.active != other.active) {
        return false;
    }
    return true;
}

そして、サブクラスのものは次のとおりです。

@Override
public int hashCode() {                
    int hash = 7;
    hash = 79 * hash + (this.getClassifierExcludedDateTimeNo() != null ? this.getClassifierExcludedDateTimeNo().hashCode() : 0);
    return hash;
}

@Override
public boolean equals(Object obj) {        
    if (obj == null) {
        return false;
    }
    if (getClass() != obj.getClass()) {
        return false;
    }
    if (! super.equals(obj)) {            
        return false;
    }
    final Classifier_Excluded_DateTime other = (Classifier_Excluded_DateTime) obj;   

    if (this.getClassifierExcludedDateTimeNo() != other.getClassifierExcludedDateTimeNo() && (this.getClassifierExcludedDateTimeNo() == null || !this.classifierExcludedDateTimeNo.equals(other.ClassifierExcludedDateTimeNo))) {            
        return false;
    } 
    return true;
}

どちらかのクラスのこれらのメソッドを修正することで、私がやろうとしていることを実行できますか?

比較Classifier_Excluded_DateTimeにフィールドを含めずに、の2つのインスタンスが同じであるかどうかをテストしようとしています。classifierExcludedDateTimeNo

4

1 に答える 1

1

Classifier_Excluded_DateTimeのサブクラスとして宣言していませんExcluded_DateTime。そのためには、次のように言う必要があります。

public class Classifier_Excluded_DateTime extends Excluded_DateTime {

今のところ、タイプ(と言う場所)のメンバーインスタンス変数が内部にあるためExcluded_DateTime、の一種のデリゲートとして扱っているように見えます。あなたは自分の投稿でサブクラスとスーパークラスについて話しているので、それはあなたの意図ではないと思います。Classifier_Excluded_DateTimeClassifier_Excluded_DateTimeExcluded_DateTimeprivate Excluded_DateTime classifierExcludedDateTime;

super.equals()(更新:明示的な呼び出しがないと思ったエラーを削除しました)。

于 2012-10-21T16:27:52.600 に答える