Untitled

 avatar
unknown
plain_text
a year ago
413 B
10
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