如下所示:
java" id="highlighter_984681">
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
RED,GREEN,YELLOW;
}
class Color1{ //模仿枚举
private static int ordinal=- 1 ;
private Color1(){
ordinal++;
}
public static final Color1 RED= new Color1();
public static final Color1 GREEN= new Color1();
public static final Color1 YELLOW= new Color1();
public int ordinal(){
return ordinal;
}
}
|
在这里我只模仿了获取枚举的下标,大家有兴趣可以模仿一下其他方法
以上这篇java仿枚举实例就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持服务器之家。