I have a couple of questions actually.
I have a class Dog with the following instance fields:
private int id;
private int id_mother;
private int id_father;
private String name="";
private String owner="";
private String bDate="";
I also have a class Archive which can instantiate Dog and put Dog objects into an ArrayList.
I am trying to write a method in Archive which takes an integer as ID and looks through the ArrayList, and returns the object containing that ID.
private Dog getDog(int id){
Dog dog = new Dog();
int length=getSize();
int i=0;
dog=al.get(i);
i++;
while(dog.getId()!=id && i<length)
dog=al.get(i);
i++;
if(dog.getId()!=id)
dog=null;
return dog;
}//end getDog
There are two problems with this method (the other methods I use work). First of all it's not working, and I can't see why. I'm while-looping through (potentially) all the objects in the arraylist, for then after the loop is finished, checking whether the loop finished because it ran out of objects to search through, or because it found an object with the given ID. Secondly, that seems like an immensely time-consuming process. Is there some way to speed this up?