0

10

回答

2921 浏览

关于ConcurrentHashMap同步的理解?[已解决]0

在网上看ConcurrentHashMap是线程安全的,我测试的结果却不是这样。 1.开启线程 public class MapRun { public static void main(String[] args) { for(int i = 0 ; i < 10 ; i ++){ MapKey map = new MapKey(); new Thread(map).start(); } ...

2014年7月09日 14:26
0

2

回答

2395 浏览

ConcurrenthashMap如何实现并发操作[已解决]10

请教一个问题, 首先在ConcurrenthashMap中预置10万条测试数据 1,我如何使用一个线程对ConcurrenthashMap作操作,先get(key),接着remove(key),直到所有数据remove,记录一下所有时间 2,我如何使用多个线程(3个线程)对ConcurrenthashMap作上面同样的操作,我需要得到两种处理方式所使用的时间 希望能给我简单的demo,谢谢 ...

2013年4月09日 14:56
0

5

回答

14488 浏览

怎么使用 ConcurrentHashMap 才能是线程安全的?[已解决]5

public class test { public static Map chm = new ConcurrentHashMap(); public static void main(String[] args) { test.chm.put("test", 1); tht t1 = new tht(); t1.start(); for(int i=1;i<1000;i+ ...

2012年9月21日 17:26

本周活跃投票用户

最新评论

Global site tag (gtag.js) - Google Analytics