Lecture 13
12
Collections of collections
•Dictionary might map a word to an ArrayList of Definition instances
•Registrar’s database maps a student ID to a StudentRecord object that contains a Map of courses taken (key course name, value an object storing the grade)
•Screen maintains a private field that’s an array of arrays of char:
•  private char[][] pixels;