6使用enum来替代常量

Posted

tags:

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

如果没有枚举类,我们可能需要写很多的静态变量,例如:

public static int APPLE = 1;
public static int GRAPE = 2;

枚举类写法

enum Fruit{
    APPLE(0),
    GRAPE(1);
    private int type;

    private Fruit(int type) {
        this.type = type;
    }

    public int getType() {
        return type;
    }

    public void setType(int type) {
        this.type = type;
    }
    
}

枚举类提供了很多方法,用于遍历,取值...等,同时由于枚举的机制,会有例如编译检查这样安全的用法。

以上是关于6使用enum来替代常量的主要内容,如果未能解决你的问题,请参考以下文章

Enum(枚举类型)的基本应用

java之 ------ 枚举类型

inline内联函数

Java enum的用法详解

Thinking in java Chapter19 枚举类型

Java中的Enum