/* Author: James Tam Version: January 27, 2021 */ public class Person { // Odd age use to make it easier to see effect // of shallow vs. deep copy public int age = -1; public Person(int anAge) { age = anAge; } }