java枚举enum

Posted 我不吃饼干呀

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了java枚举enum相关的知识,希望对你有一定的参考价值。

http://www.cnblogs.com/wenruo/p/5349614.html

java的枚举通过关键字enum实现。可以理解为一个类,不过这个类由编译器自动加了一些方法。

static values()方法用来按照enum常量的声明顺序 产生由这些常量值构成的数组

ordinal 表示某个特定enum常量的声明顺序

toString() 以显示每个enum实例的名字

可以在switch语句中使用,但是注意case处直接写常量,不加enum的名字。

 1 enum Spiciness {
 2     // 用大写字母表示
 3     NOT, MILD, MEDIUM, HOT, FLAMING, // <--这里逗号可有可无
 4 };
 5 
 6 public class EnumDemo {
 7     public static void main(String[] args) {
 8         // 范围for
 9         for (Spiciness s: Spiciness.values()) {
10             System.out.println(s + ", ordinal " + s.ordinal());
11         }
12         
13         Spiciness[] sp = new Spiciness[2];
14         sp[0] = Spiciness.FLAMING;
15         sp[1] = Spiciness.MEDIUM;
16         
17         switch (sp[0]) {
18             case NOT: System.out.println("not spicy at all"); 
19                       break;
20             case MILD: // 注意不是Spiciness.MILD
21             case MEDIUM: System.out.println("a little not"); 
22                          break;
23             case HOT:
24             case FLAMING:
25             default: System.out.println("maybe too hot");
26         }
27     }
28 }

 

以上是关于java枚举enum的主要内容,如果未能解决你的问题,请参考以下文章

Java 枚举类的基本使用

java 的 枚举类型 在Eclipse里面用enum报错

java 的 枚举类型 在Eclipse里面用enum报错

java枚举类型

C/C++ 中enum枚举量的介绍:介绍enum枚举量在C/C中的作用和使用方法

[JAVA]枚举类型的应用