-
Create java files to make this code compile and run.
-
What five objects are created in the main?
- ArrayList of dogs
- Dog named Fido with 4 legs
- Dog named Fido with 3 legs
- Dog named Alfie with 4 legs
- Comparator for Animal
- Can you spot the comparator constructor call? Where is the class definition for the comparator? The comparator constructor call is an argument within the Collections.sort() call. The class definition for the comparator is within the constructor.