Quiz: Person Constructor
Implement the Person(String aName) constructor, a line at a time.
First, initialize the name instance variable.
|
name = aName; |
|
Now initialize the other instance variable of the Person class.
|
friends = ""; |