Class Definition, revisited
/* Collection of rooms. */
// Each room r has a unique r.id > 0.
// nextId is the ID# of the next room
private static int nextId = 1;
// For each room r, r.previous is the
// room created immediately before
// r was created, or null if r was the
// first room created. The most recent
// room to have been created is last.
private static Room last;