background image

    public int getIndex() {

    return index;

    }

    public void setIndex(int index) {

    this.index = index;   斩龙  www.luoyege.net

    }

    }

    用法四:覆盖枚举的方法

    下面给出一个 toString()方法覆盖的例子。

    public enum Color {

    RED("红色", 1), GREEN("绿色", 2), BLANK("白色", 3), YELLO("黄色", 
4);

    // 成员变量

    private String name;

    private int index;

    // 构造方法    奥术神座:www.laibigu.com

    private Color(String name, int index) {

    this.name = name;

    this.index = index;

    }

    //覆盖方法

    @Override