public class Foo{
private final int A;
private final int B;
public boolean equals(Object o){
//type check omitted
return A==o.A && B==o.B;
}
}
I want to have another .equals() method like this
public boolean equals(Object o){
return A==o.A;
}
The Foo object is first created with A,B field, then I want to send them off to a Set<E> that used the 2nd equals() method to only compares field A.
I know I can create new objects that only have A field, but overhead would be big. Any advice?