forked from JFulgoni/Java-Practice
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAnimal.java
More file actions
58 lines (49 loc) · 1.1 KB
/
Copy pathAnimal.java
File metadata and controls
58 lines (49 loc) · 1.1 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
package john_test;
//import java.util.HashMap;
import java.util.HashSet;
public class Animal {
private String name;
private static int uniqueId = 0; //makes a new id for each animal
private int animalId;
private static HashSet<Integer> idSet = new HashSet<Integer>();
public Animal(){
name = "Dog";
animalId = ++uniqueId;
while(idSet.contains(animalId)){
animalId = ++uniqueId;
}
idSet.add(animalId);
}
public Animal(String name){
this.name = name;
animalId = ++uniqueId;
while(idSet.contains(animalId)){
animalId = ++uniqueId;
}
idSet.add(animalId);
}
public Animal(String name, int givenId){
this.name = name;
animalId = givenId;
while(idSet.contains(givenId)){
System.out.println("Id (" + animalId + ") for " + name + " already exists");
animalId = ++givenId;
}
idSet.add(animalId);
}
public int getAnimalId() {
return animalId;
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public String toString(){
return this.name;
}
public String printId(){
return " (" + this.animalId + ") ";
}
}