Question: Add methods to the Person class from Self-Test Question 16 to perform the following tasks: Set the name attribute of a Person object. Set the
Add methods to the Person class from Self-Test Question 16 to perform the following tasks:
- Set the name attribute of a Person object.
- Set the age attribute of a Person object.
- Test whether two Person objects are equal (have the same name and age).
- Test whether two Person objects have the same name.
- Test whether two Person objects are the same age.
- Test whether one Person object is older than another.
- Test whether one Person object is younger than another.
Write a driver (test) program that demonstrates each method, with at least one true and one false case for each of the methods tested.
Step by Step Solution
3.52 Rating (162 Votes )
There are 3 Steps involved in it
public class PersonImproved private String name private int age public void readInput Scanner keyboard new ScannerSystemin SystemoutprintlnWhat is the persons name name keyboardnextLine Systemoutprint... View full answer
Get step-by-step solutions from verified subject matter experts
