我有一个代码,其中我们尝试将本地数据中心放在第一位,并转移所有其他数据中心,但是此代码引发异常:
在我的下面代码中,如果onCreate()
是GHI,则它将抛出CURRENT_LOCATION
异常
java.lang.ArrayIndexOutOfBoundsException
我想做的是- public enum Colocation {
ABC("ABC", 2), PQR("PQR", 3), DEF("DEF", 4), GHI("GHI", 5), ;
...
}
public static List<Colocation> get() {
List<Colocation> result = Arrays.asList(Colocation.ABC, Colocation.PQR, Colocation.DEF, Colocation.GHI);
// first element in the list will always be the local datacenter
Collections.swap(result, 0, CURRENT_LOCATION.get().ordinal());
Collections.shuffle(result.subList(1, result.size()));
return result;
}
是什么,我想把它放在列表的首位,其余的可以是随机的。
答案 0 :(得分:1)
要做:
result.remove(CURRENT_LOCATION);
result.add(0, CURRENT_LOCATION);
或使用swap
:
Collections.swap(result, 0, result.indexOf(CURRENT_LOCATION.get()));