How would I search for a record within my object?
The program is a contact book, and I wanted it to do the search by the name that I type in a JPane and return the contact's contact information. Here is the commented code.
package ExemploDeAula;
public class Agenda {
//Define um vetor de objetos do tipo contato
private Contato[] lstContatos;
private int qtd;
public void inicializar(){
lstContatos = new Contato[10];
qtd = 0;
}
public boolean inserir(Contato novoContato){
// Verificar se não está cheio
if (qtd>=10){ //se está cheio
return false; //falhou
}
//atribuir o novoContato em uma posição livre
else{
lstContatos[qtd]= novoContato;
qtd++;
return true;
}
}
public boolean remover(Contato contato){
return false;
}
public String pesquisar(String nome){
int i;
String dados;
//procurar pelo nome entre os contatos e
for (i=0;i<=qtd;i++){
if (nome.equals(Contato.getNome())){
}
}
//retornar o objeto correspondente
return dados;
}
}