Labs
Files for this lab are in com.example.innerclasses.labs.
Use ShowSortedHits.java, AccessLogComparator.java, and access_log as starter files for these labs.
- Modify
ShowSortedHits.javaso it uses a member inner class as aComparator, rather than havingAccessLogComparator.javaas a separate file.
(Solution: ShowSortedHits2.java)
- Change your solution to the previous lab to use a local inner class instead of a member inner class.
(Solution: ShowSortedHits3.java)
- Change your solution to the previous lab to use an anonymous inner class instead of a local inner class.
(Solution: ShowSortedHits4.java)