17 lines
284 B
Java
17 lines
284 B
Java
package com.inmind.arraylist03;
|
|
|
|
public class Car {
|
|
String brand;
|
|
double price;
|
|
String color;
|
|
|
|
public Car() {
|
|
}
|
|
|
|
public Car(String brand, double price, String color) {
|
|
this.brand = brand;
|
|
this.price = price;
|
|
this.color = color;
|
|
}
|
|
}
|