Olá, Com o código :
@Override
public int hashCode() {
final int prime = 31;
int result = 1;
result = prime * result + numero;
return result;
}
@Override
public boolean equals(Object obj) {
if (this== obj)
return true;
if (obj == null)
return false;
if (getClass() != obj.getClass())
return false;
Conta other = (Conta) obj;
if (numero != other.numero)
return false;
return true;
}
Estou em dúvida, não consegui identificar os métodos utilizados, quais sao realmente as comparações. Se são feitas pelo objeto por completo ou se consigo fazer a comparação somente pelo "numero" da conta.
O "Conta other = (Conta) obj", está realizando qual procedimento?.
Obrigado.