Exercise Set 10: The Meaning of Equality

Exercise 10.1 Create a class Person: with name, eyecolor, date of birth, and address. Create a class Address with city and zip code only.

Exercise 10.2 Start with an array of Person. Experiment with making copies of the array, modifying people in the first array, observe what happens in both. First make the copy by assignment, then using the incorrect copy constructor, then using the copy method developed in the previous exercise.