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:

Biograph

An early American motion picture company, known for its pioneering role in the development of cinema in the late 19th and early 20th centuries.

General Film Company

An early American motion picture production and distribution company that was a significant force in the film industry during the silent era.

Exchange System

A network or process whereby goods, services, or resources are traded between parties without the use of money, or the infrastructure that supports the distribution and exhibition of films to theaters.

Film Industry

The sector of the entertainment industry that encompasses the production, distribution, and exhibition of films and movies.

Related Questions