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