0
Good afternoon to all
I need to compare all the indexes of this arrayList with the Indice that is currently being added, it is possible?
//MENU - CADASTRAR PRODUTOS
private void cadastrarProdutos() {
String escolha;
do {
tituloPrincipal();
System.out.println("**** INCLUSÃO DE PRODUTOS ****");
Mercadorias mercadoria = setDadosDoProduto();
escolha = confirmaOperacao();
if (escolha.equalsIgnoreCase("S")) {
for(int i = 0; i < prodList.size(); i++) {
if(prodList.get(0).getNome() == prodList.get(i).getNome()) {
System.out.println("Esse produto já foi cadastrado!");
}
else {
prodList.add(mercadoria);
}
}
}
escolha = getRepetirOperacao();
} while (escolha.equalsIgnoreCase("S"));
adicionarProduto();
}
If you’re overwriting
Object.hashCode()
, need to overwrite tooObject.equals()
.– Piovezan
Done, thank you.
– Piovezan