程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> JAVA編程 >> JAVA綜合教程 >> java 枚舉,java

java 枚舉,java

編輯:JAVA綜合教程

java 枚舉,java


枚舉類

public enum

 

枚舉元素: 枚舉類的一個實例對象

 

復雜的枚舉:自由的構造方法.

枚舉元素實現一個枚舉類的抽象方法

 

 

package test; public class TestEnum { public static void main(String[] args) { Triffic tr=Triffic.GREEN; System.out.println(tr+" 下一個燈是: "+tr.nextDeng()); } public enum Triffic{ RED (400){ @Override public Triffic nextDeng() { return GREEN; } }, GREEN (200){ @Override public Triffic nextDeng() { return YELLOW; } }, YELLOW(10) { @Override public Triffic nextDeng() { return RED; } }; public abstract Triffic nextDeng(); int time; private Triffic(int time){ this.time=time; } public int getTime() { return time; } public String toString(){ return this.name()+":"+this.time; } } }

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved