String model;
int year;
enum Color {GREEN, BLUE, RED};
double price;
public Car(String model, int year, Color shade, double price) {
this.model = model;
this.year = year;
this.shade= shade;
this.price = price;
}
괜찮습니까? main 메서드로 객체를 만들 때 여전히 오류가 발생합니다.
아니, 당신은하지 않았다. Thats는 enums가 작동하는 것을 모릅니다. 유형을 선언했지만 인스턴스를 정의하지 않았습니다. – Ivan
이봐, 어떻게 내가 그걸 할 수 있니? –