所以我有一个包含键和对象的哈希图。我想知道是否可以使用键创建多个排列。例如,如果我有:
1 - 对象 1 2 - 对象 2 3 - 对象 3 4 - 对象 4
获得随机订单。所以一个结果可能是:
3 - 对象 3 1 - 对象 1 2 - 对象 2 4 - 对象 4
到目前为止,我有:
Map<Integer, GeoPoint> mapPoints = new HashMap<Integer, GeoPoint>();
Map<Integer, GeoPoint> mapPointsShuffle = new HashMap<Integer, GeoPoint>();
for (int t =0; t < 50; t ++){
Collections.shuffle((List<?>) mapPoints);
mapPointsShuffle.putAll(mapPoints);
}
所以这个想法是给我50个随机排列。但它回来了:
09-26 11:15:27.813: E/AndroidRuntime(20434): java.lang.ClassCastException: java.util.HashMap 不能转换为 java.util.List
有任何想法吗?