Please help me in one hour Thanks WindowHelp Apple Google Quiz: Midterm Exam D |
ID: 3735950 • Letter: P
Question
Please help me in one hour Thanks WindowHelp Apple Google Quiz: Midterm Exam D | Question 9 5 pts Given the following definition for an Address, Write a CityComparator class that compares twol Addresses based on their city. Write complete definition of CityComparator class including the implementation of all required functions public class Address t private String streetName private Integer streetNumber; private String city; private String state; private Integer zipcode; // public getters and setters.. HTML Editor - ParagraphExplanation / Answer
class CityComparator implements Comparator<Address>
{
public int compare(Address a, Address b)
{
return a.city.compareTo(b.city);
}
}