java 枚舉類(簡單使用)

來源:互聯網
上載者:User

標籤:java   info   簡單   this   util   ack   set   添加   void   

直接上代碼

用法一(常量):

package com.ou.test;import com.sun.corba.se.impl.util.SUNVMCID;public class Enum {    public static void main(String[] args) {        Weekday day = Weekday.FIVE;        System.out.println(day);//直接輸出FIVE    }}enum Weekday{    ONE,TWO,THREE,FOUR,FIVE,SIX,SEVEN;}

結果:

看起來和上面的靜態變數使用方式差不多,而且預設的toString方法返回的就是對應的名字。

用法二(switch):

 

package com.ou.test;
public class Enum {
public static void main(String[] args) {
Color color = Color.GREEN;
switch (color){
case RED:
color = Color.GREEN;
break;
case YELLOW:
color = Color.RED;
break;
case GREEN:
color = Color.YELLOW;
break;
}
System.out.println(color);
}

}
enum Color{
GREEN, YELLOW, RED
}

 結果:

 

用法三:向枚舉中添加新方法
package com.ou.test;
public class Enum {
public static void main(String[] args) {
System.out.println(Color.getName(3));
System.out.println(Color.getIndex("綠色"));
}

}
enum Color{
RED("紅色", 1), GREEN("綠色", 2), BLANK("白色", 3), YELLO("黃色", 4);
//成員變數
private String name;
private int index;
//構造方法
Color(String name, int index) {
this.name=name;
this.index=index;
}
//普通的方法 (根據索引號來找值)
public static String getName(int index){
for (Color c:Color.values()){
if (c.getIndex() == index){
return c.name;
}
}
return null;
}
//普通的方法 (根據值來找索引號)
public static int getIndex(String name){
for (Color c:Color.values()) {
if (c.getName()==name){
return c.index;
}
}
return -1;
}
//get set
public String getName() {
return name;
}

public void setName(String name) {
this.name = name;
}

public int getIndex() {
return index;
}

public void setIndex(int index) {
this.index = index;
}
}

結果:

 

 

 

java 枚舉類(簡單使用)

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.