public enum Car { MAX_CAR(100,"最高級車"), NORM_CAR(5,"中級車"), MIN_CAR(1,"低級車"); private int price; private String desc;
確定! 回上一頁