作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我设计了一个通用方法,将枚举值集读/写为 BigInteger
我最初的实现
public static <T extends Enum<T>> Set<T> asList(BigInteger integer, Class<T> targetClass) {
Set<T> enums = new HashSet<T>();
// Step 0. Sanity check
if (targetClass == null || integer == null || !targetClass.isEnum())
return enums;
// Step 1. Checking each value of target class
T[] values = targetClass.getEnumConstants();
for (int i = 0; i < values.length; i++) {
if (integer.testBit(i))
enums.add(values[i]);
}
// Step 3. Returning final enums
return enums;
}
但是,我切换到:
public static <T extends Enum<T>> Set<T> asSet(BigInteger integer, Class<T> targetClass) {
Set<T> enums = new HashSet<T>();
// Step 0. Sanity check
if (targetClass == null || integer == null || !targetClass.isEnum())
return enums;
// Step 1. Checking each value of target class
T[] values = targetClass.getEnumConstants();
for (int i = 0; i < values.length; i++) {
T value = values[i];
if (integer.testBit(value.ordinal()))
enums.add(value);
}
// Step 3. Returning final enums
return enums;
}
我这样做是因为文档中的 Enum.ordinal 描述:
* Returns the ordinal of this enumeration constant (its position
* in its enum declaration, where the initial constant is assigned
* an ordinal of zero).
所以基本上,第一个值可能并不总是 0。
在什么情况下,或者在哪个 JVM 上,枚举初始值不为 0?
最佳答案
你说所以基本上,第一个值可能并不总是0。
你是如何得出这个结论的?
第一个枚举常量的序数始终为 0。当然,如果您更改顺序或添加新常量,则同一元素的序数也会发生变化。这就是为什么这是一个坏主意。
关于java - 来自类的数组枚举常量中的位置是否对应于枚举的序数值?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16455223/
序 大家好呀,我是summo,这次来写写我在上班空闲(摸鱼)的时候做的一个小网站的事。去年阿里云不是推出了个活动嘛,2核2G的云服务器一年只要99块钱,懂行的人应该知道这个价格在业界已经是非常良心了
我尝试根据给定的级别顺序(BFS 顺序)构造 BST。我知道这是可能的,但我不知道我该怎么写。问题是我必须使用 BFS 序列。所以,我不能在这里使用递归,我必须迭代地编写我的程序......我发现这有
我是一名优秀的程序员,十分优秀!