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

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!