SuperClass
public class SuperClass{
//animal type
private String type;
public SuperClass(String animalType){
type = new String( animalType );
}
//conversion to string
public String toString(){
return "This is a type of" + type + ".";
}
}
No comments:
Post a Comment