我有一个名为的类Animal
,它具有以下字段;
String ani_Name;
int animal_maintainance_cost;
我有一堂课叫Maintenance
. 和:
- 它有一种方法来计算动物园中动物的总动物维护成本。
- 它有一种方法可以计算动物园里所有动物的动物维护成本。
我试过的代码:
private Map <Integer,Animal> animal = new HashMap<Integer,Animal>();
// Here, `Integer` is the `animalID `and `Animal `is an object of the class `Animal`
//Then i generated getters and setters, and using the setter method i will be adding all the animals in the Zoo.
1
public int returnAllAnimalMaintenanceCost(Integer animalID){
int animalMaintenaceCostForGivenAnimalID = ???? // How do i calculate this using `Map <Integer,Animal>`
return animalMaintenaceCostForGivenAnimalID;
}
2
public int returnAllAnimalMaintenanceCost() {
return ??
}
有人可以帮我计算动物园里所有动物的总维护成本吗?