Question: A third constructor for the class Name could have the following header: public Name( Name aName ) This constructor creates a Name object whose data
A third constructor for the class Name could have the following header:
public Name( Name aName )
This constructor creates a Name object whose data fields match those of the object aName. Implement this new constructor by invoking one of the existing constructors. Use the attached Name.java file.
Write a main() method in the Name.java file to create your name as a Name object using this third constructor. Then attach the Name.java with the third constructor and the demo main().
Attached Name.java file.
/** A class that represents a person's name. Listing B-1 in Segment B.16 of Appendix B. @author Frank M. Carrano @author Timothy M. Henry @version 5.0 */ public class Name //implements Comparable{ private String first; // First name private String last; // Last name public Name() { } // end default constructor public Name(String firstName, String lastName) { first = firstName; last = lastName; } // end constructor public void setName(String firstName, String lastName) { setFirst(firstName); setLast(lastName); } // end setName public String getName() { return toString(); } // end getName public void setFirst(String firstName) { first = firstName; } // end setFirst public String getFirst() { return first; } // end getFirst public void setLast(String lastName) { last = lastName; } // end setLast public String getLast() { return last; } // end getLast public void giveLastNameTo(Name aName) { aName.setLast(last); } // end giveLastNameTo public String toString() { return first + " " + last; } // end toString } // end Name
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
