/* Author: James Tam Version: 2015 Important point: The Teacher class not only contains a reference to a Student but a new Student is created each time the constructor is called. */ public class Teacher { private Student s; public Teacher() { s = new Student(); } }