Question: JAVA coding help public double getTotalWeightOfAllAnimals() This method will compute the sum of the weight of all elements in the array Returns: The total weight
JAVA coding help
public double getTotalWeightOfAllAnimals()
This method will compute the sum of the weight of all elements in the array
Returns:
The total weight of all Animal objects in the animals array
However my code is wrong, why?
Unit test getTotalWeightOfAllAnimals()
0 / 2
Your output
java.lang.NullPointerException
public double getTotalWeightOfAllAnimals() { double total = 0; for (int i = 0; i < animals.length; i++) { total += animals[i].getWeight(); } return total; } Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
