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

1 Expert Approved Answer
Step: 1 Unlock

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

blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Java An Introduction to Problem Solving and Progra Questions!