Untitled
Anonymous
plain_text
01/10/2024 1:41 PM
552 B
28
Indexable
class CarModel
{
private String name;
private int speed;
public CarModel(String theName, int theSpeed)
{
this.name = theName;
this.speed = theSpeed;
}
public String getName()
{
return this.name;
}
public int getSpeed()
{
return this.speed;
}
public String toString()
{
return this.name + " with a top speed of " + this.speed;
}
}Editor is loading...
Leave a Comment