我的要求:我有一个只包含诸如public final static short SOME_CONST = whatever. 问题:短常量必须是unique。当有重复时,我主要对 SOME_CONST_A、SOME_CONST_B、...引起冲突的名称感兴趣。
我编写了以下测试来通过反射进行测试。它有效,但我觉得它笨重而且不是很优雅:
@Test
public void testIdsAreUnique() {
Map<Short, List<String>> fieldNamesById = new LinkedHashMap<>();
Arrays.stream(InterfaceWithIds.class.getDeclaredFields())
.filter(f -> f.getClass().equals(Short.class))
.forEach((f) -> {
Short key = null;
String name = null;
try {
key = f.getShort(null);
name = f.getName();
} catch (IllegalAccessException e) {
throw new RuntimeException(e);
}
fieldNamesById.computeIfAbsent(key, x -> new ArrayList<>()).add(name);
});
assertThat(fieldNamesById.entrySet().stream().filter(e -> e.getValue().size() > 1)
.collect(Collectors.toMap(Map.Entry::getKey, Map.Entry::getValue)), is(Collections.emptyMap()));
}
有没有办法避免中间的本地地图实例?
函数式编程
大话西游666
相关分类