从 2 月开始使用 Javolution 6.0.0 快照。
据此,我们可以迭代 FastMap,但我不断收到 java.lang.UnsupportedOperationException
http://javolution.org/target/site/apidocs/javolution/util/FastMap.html
我的代码
FastMap<String,String> map = new FastMap<String, String>();
map.put("1", "2");
for (FastMap.Entry<String, String> m : map.entrySet()) {
String key = m.getKey();
String value = m.getValue();
}
更多来自链接中解释的示例...... map.head 和 map.tail 甚至不存在。
那么我们该怎么做呢?