java枚举的使用(java 枚举的定义与用法)
很多初学者在刚开始使用枚举的时候觉得它只是一个给常量命名的工具,比如 static constant string enum_val_name。
但其实java的枚举还有很多先进的功能,这些功能可以帮助开发者写出更简洁且不易出错的代码。
接下来我会列举一些java的高级枚举功能,以及如何利用这些功能来使得开发更高效,更具可读性。
枚举是类
首先,我们要确认一点,枚举是java的一个类。
比如创建下面一段代码,枚举的基类enum<e>
public abstract class enum<e extends enum<e>>
implements constable, comparable<e>, serializable {
private final string name;
public final string name() {
return name;
}
private final int ordinal;
public final int ordinal() {
return ordinal;
}
protected enum(string name, int ordinal) {
this.name = name;
this.ordinal = ordinal;
}
public string tostring() {
return name;
}
public final boolean equals(object other) {
return this==other;
}
public final int hashcode() {
return super.hashcode();
}
public final int compareto(e o) {
enum<?> other = (enum<?>)o;
enum<e> self = this;
if (self.getclass() != other.getclass() && // optimization
self.getdeclaringclass() != other.getdeclaringclass())
throw new classcastexception();
return self.ordinal – other.ordinal;
}
}
上述代码是一个普通的抽象类,有两个字段,name和ordinal。
由于枚举都是类,所以我们能够为枚举提供实例方法、构造函数和字段,还可以重写 tostring()
java中的operation枚举
enum operation {
add,
subtract,
multiply
}
此枚举表示可以对两个值操作并将产生结果。
一般来说,初学者更偏向于使用switch 语句来完成这个功能,如下代码所示:
public int apply(operation operation, int arg1, int arg2) {
switch(operation) {
case add:
return arg1 + arg2;
case subtract:
return arg1 – arg2;
case multiply:
return arg1 * arg2;
default:
throw new unsupportedoperationexception();
}
}
这个实现存在一些问题。
①如果我们向operation添加新操作,编译器不会通知此switch没有正确处理新的操作。
②遇到default情况,就算我们知道它永远不会发生,这也是必需的。
但还好,java 8 使用函数式编程为我们提供了一个干净的解决方案。
功能枚举实现
由于枚举是类,我们可以创建一个枚举字段来保存函数。如何来完成这一操作?
首先,让我们将开关放在枚举类中。
enum operation {
add,
subtract,
multiply;
public static int apply(operation operation, int arg1, int arg2) {
switch(operation) {
case add:
return arg1 + arg2;
case subtract:
return arg1 – arg2;
case multiply:
return arg1 * arg2;
default:
throw new unsupportedoperationexception();
}
}
}
可以做这样的添加:operation.apply(operation.add, 2, 3);
上述代码中是从 inside 调用方法operation,可以将其更改为实例方法,并使用this关键字,而不是将所需的operation作为参数传递。
public int apply(int arg1, int arg2) {
switch(this) {
case add:
return arg1 + arg2;
case subtract:
return arg1 – arg2;
case multiply:
return arg1 * arg2;
default:
throw new unsupportedoperationexception();
}
}
像这样调用加法操作:operation.add.apply(2, 3);
现在让我们更进一步,通过使用函数式编程完全消除 switch 语句。
enum operation {
add((x, y) -> x + y),
subtract((x, y) -> x – y),
multiply((x, y) -> x * y);
operation(bifunction<integer, integer, integer> operation) {
this.operation = operation;
}
private final bifunction<integer, integer, integer> operation;
public int apply(int x, int y) {
return operation.apply(x, y);
}
}
上述代码中做了三件事:
1.添加了一个bifunction<integer, integer, integer> operation字段。
2.operation使用bifunctionarg创建了一个构造函数。
3.调用构造函数bifunction<integer, integer, integer>并用
lambda指定。该
java.util.function.bifunction operation字段是对带有两个参数的函数(方法)的引用。在上述代码示例中,两个参数都是整数,返回值也是整数。但是java 参数化类型不支持原语,因此必须使用integer。
新operation实现以相同的方式使用:operation.add.apply(2, 3),
但是,这种实现会比switch好一些,因为编译器会在operation添加新功能时会要求开发者实现新功能。
关键要点
java 枚举是扩展enum<t>.
枚举可以有字段、构造函数和实例方法。
java 枚举字段可以存储函数与 lambda 配合使用,也可以创建一个函数的干净、安全的特定于枚举的实现,并在编译时强制执行(不使用switch)。
以上就是enum高阶的使用方法,希望对你有帮助。