枚举类型是JDK5.0的新特征。Sun引进了一个全新的关键字enum来定义一个枚举类。下面就是一个典型枚举类型的定义: java
Java代码
public enum Color{
RED,BLUE,BLACK,YELLOW,GREEN
}
public enum Color{
RED,BLUE,BLACK,YELLOW,GREEN
} 显然,enum很像特殊的class,实际上enum声明定义的类型就是一个类。而这些类都是类库中Enum类的子类 (java.lang.Enum<E>)。它们继承了这个Enum中的许多有用的方法。下面咱们就详细介绍enum定义的枚举类的特征及其用 法。(后面均用Color举例) 数组
一、Color枚举类是特殊的class,其枚举值(RED,BLUE...)是Color的类对象(类实例):
Color c=Color.RED;
并且这些枚举值都是public static final的,也就是咱们常常所定义的常量方式,所以枚举类中的枚举值最好所有大写。 学习
二、即然枚举类是class,固然在枚举类型中有构造器,方法和数据域。可是,枚举类的构造器有很大的不一样:
(1) 构造器只是在构造枚举值的时候被调用。 this
Java代码
enum Color{
RED(255,0,0),BLUE(0,0,255),BLACK(0,0,0),YELLOW(255,255,0),GREEN(0,255,0);
//构造枚举值,好比RED(255,0,0)
private Color(int rv,int gv,int bv){
this.redValue=rv;
this.greenValue=gv;
this.blueValue=bv;
}
public String toString(){ //自定义的public方法
return super.toString()+"("+redValue+","+greenValue+","+blueValue+")";
}
private int redValue; //自定义数据域,private为了封装。
private int greenValue;
private int blueValue;
}
enum Color{
RED(255,0,0),BLUE(0,0,255),BLACK(0,0,0),YELLOW(255,255,0),GREEN(0,255,0);
//构造枚举值,好比RED(255,0,0)
private Color(int rv,int gv,int bv){
this.redValue=rv;
this.greenValue=gv;
this.blueValue=bv;
} spa
public String toString(){ //自定义的public方法
return super.toString()+"("+redValue+","+greenValue+","+blueValue+")";
}
private int redValue; //自定义数据域,private为了封装。
private int greenValue;
private int blueValue;
} (2) 构造器只能私有private,绝对不容许有public构造器。这样能够保证外部代码没法新构造枚举类的实例。这也是彻底符合情理的,由于咱们知道枚举 值是public static final的常量而已。 但枚举类的方法和数据域能够容许外部访问。 对象
Java代码
public static void main(String args[])
{
// Color colors=new Color(100,200,300); //wrong
Color color=Color.RED;
System.out.println(color); // 调用了toString()方法
}
public static void main(String args[])
{
// Color colors=new Color(100,200,300); //wrong
Color color=Color.RED;
System.out.println(color); // 调用了toString()方法
} 继承
三、全部枚举类都继承了Enum的方法,下面咱们详细介绍这些方法。
(1) ordinal()方法: 返回枚举值在枚举类种的顺序。这个顺序根据枚举值声明的顺序而定。
Color.RED.ordinal(); //返回结果:0
Color.BLUE.ordinal(); //返回结果:1
(2) compareTo()方法: Enum实现了java.lang.Comparable接口,所以能够比较象与指定对象的顺序。Enum中的compareTo返回的是两个枚举值的顺 序之差。固然,前提是两个枚举值必须属于同一个枚举类,不然会抛出ClassCastException()异常。(具体可见源代码)
Color.RED.compareTo(Color.BLUE); //返回结果 -1
(3) values()方法: 静态方法,返回一个包含所有枚举值的数组。
Color[] colors=Color.values();
for(Color c:colors){
System.out.print(c+",");
}//返回结果:RED,BLUE,BLACK YELLOW,GREEN,
(4) toString()方法: 返回枚举常量的名称。
Color c=Color.RED;
System.out.println(c);//返回结果: RED
(5) valueOf()方法: 这个方法和toString方法是相对应的,返回带指定名称的指定枚举类型的枚举常量。
Color.valueOf("BLUE"); //返回结果: Color.BLUE
(6) equals()方法: 比较两个枚举类对象的引用。 接口
Java代码
//JDK源代码:
public final boolean equals(Object other) {
return this==other;
}
//JDK源代码:
public final boolean equals(Object other) {
return this==other;
}
四、枚举类能够在switch语句中使用。 it
Java代码
Color color=Color.RED;
switch(color){
case RED: System.out.println("it's red");break;
case BLUE: System.out.println("it's blue");break;
case BLACK: System.out.println("it's blue");break;
} io