Untitled
unknown
plain_text
2 years ago
413 B
14
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