Estoy tratando de averiguar la mejor manera de buscar un cliente en un ArrayList
por su número de Id. El código a continuación no está funcionando; el compilador me dice que me falta una declaración return
.búsqueda en java ArrayList
Customer findCustomerByid(int id){
boolean exist=false;
if(this.customers.isEmpty()) {
return null;
}
for(int i=0;i<this.customers.size();i++) {
if(this.customers.get(i).getId() == id) {
exist=true;
break;
}
if(exist) {
return this.customers.get(id);
} else {
return this.customers.get(id);
}
}
}
//the customer class is something like that
public class Customer {
//attributes
int id;
int tel;
String fname;
String lname;
String resgistrationDate;
}
Una de las principales Buenas Prácticas de Java es SIEMPRE usar llaves incluso si el bloque tiene solo una oración para evitar problemas como el suyo –