public class EnumMethods { enum Speed { SLOW(10), MEDIUM(40), FAST(80); private int sp; Speed(int sp){ this.sp = sp; } public int ...
確定! 回上一頁