-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCarnivorousAnimal.java
69 lines (55 loc) · 1.3 KB
/
CarnivorousAnimal.java
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
59
60
61
62
63
64
65
66
67
68
69
package ZooManagementSystem;
public class CarnivorousAnimal {
private String name;
private int age;
private double weight;
private Gender gender;
private int happiness;
private static int LifeSpan = 15;
public CarnivorousAnimal(){
name = "";
age = 0;
weight = 0;
}
public CarnivorousAnimal(String name, int age, double weight, Gender gender){
this.name = name;
this.age = age;
this.weight = weight;
this.gender = gender;
this.happiness=100;
}
public int getHappiness() {
return happiness;
}
public void setHappiness(int happiness) {
this.happiness = happiness;
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public int getAge() {
return age;
}
public void setAge(int age) {
this.age = age;
}
public double getWeight() {
return weight;
}
public void setWeight(double weight) {
this.weight = weight;
}
public Gender getGender() {
return gender;
}
public void setGender(Gender gender) {
this.gender = gender;
}
public boolean ageOneYear(){
this.age+=1;
return this.age <= LifeSpan;
}
}