我注意到,当我的高性能系统使用时,java.util.HashMap为GC生成垃圾,这基本上是从网络读取的选择器.有没有替代java.util.HashMap(即甚至不需要实现java.util.Map,换句话说,它可以有自己的API),我可以使用这将不会留下垃圾?
GARBAGE =超出范围的对象,必须由GC收集.
对于@ durron597:
public static void main(String[] args) { Map<String,String> map = new HashMap<String,String>(); while(true) { map.put("foo1","bah1"); map.put("foo2","bah2"); map.remove("foo1"); Iterator<String> iter = map.keySet().iterator(); while(iter.hasNext()) { iter.next(); } } }
现在用-verbose:gc运行,看看会发生什么… 原文链接:https://www.f2er.com/java/126804.html