Question: Suppose the abstract class Message is defined below public abstract class Message { private String value; public Message ( String initial ) { value =

Suppose the abstract class Message is defined below
public abstract class Message
{
private String value;
public Message(String initial)
{
value = initial;
}
public String getMessage()
{
return value;
}
public abstract String translate();
}
A concrete subclass of Message, called FrenchMessage, is defined. Which methods must FrenchMessage define?
translate() only
getMessage() only
The FrenchMessage constructor and translate() only
The FrenchMessage constructor, getMessage(), and translate()
Suppose the abstract class Message is defined

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock 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 Programming Questions!