Skip to content

Latest commit

 

History

History
12 lines (10 loc) · 519 Bytes

README.md

File metadata and controls

12 lines (10 loc) · 519 Bytes

CISC275-Fall2018-first-git

  1. Create java files to make this code compile and run.

  2. 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
  1. 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.