Examlex

Solved

We Have Already Coded the Class User

question 106

Essay

We have already coded the class User. It includes the instance variables name, age, and email, an overloaded constructor, and the toString method coded as follows:
public String toString( )
{
// return some String representation of this User object
}
We are now coding the class SuperUser, which inherits from User. SuperUser has one instance variable, fee, which is a double. We want the toString method of the SuperUser class to return the same String as the toString method of the User class, plus a semicolon, a space, and the value of fee.
Example 1: If the toString method of User returns Mike, 23, HYPERLINK "mailto:mike@msn.com" mike@msn.com, and the value of fee is 19.9, the toString method of SuperUser returns Mike, 23, HYPERLINK "mailto:mike@msn.com" mike@msn.com, 19.9.
Example 2: If the toString method of User returns Jane, 22, HYPERLINK "mailto:jane@gmail.com" jane@gmail.com, and the value of fee is 24.9, the toString method of SuperUser returns Jane, 22, HYPERLINK "mailto:jane@gmail.com" jane@gmail.com, 24.9.
Code the toString method of the SuperUser class here. Assume that we do not know what the toString method of User returns.


Definitions:

Distress

Severe anxiety, sorrow, or pain that causes emotional suffering.

Probability

A measure of how likely an event is to occur, expressed as a fraction between 0 and 1.

Self-Monitoring Personality

A trait of individuals who carefully observe and regulate their behavior to fit social situations and expectations.

Cooperate

involves working together with others towards a common goal or intent, emphasizing collaboration and mutual assistance.

Related Questions