码迷,mamicode.com
首页 > 其他好文 > 详细

构建一个hashmap死锁的DEMO

时间:2017-03-06 19:36:08      阅读:165      评论:0      收藏:0      [点我收藏+]

标签:sys   util   except   tostring   rup   dex   int   uuid   ati   

package threadmodle;

import java.util.HashMap;
import java.util.Map;
import java.util.UUID;

public class ThreadModle {
	public static void main(String[] args) throws InterruptedException {
		final Map<String, String> map = new HashMap<String, String>();
		
		Thread t = new Thread(new Runnable(){
			@Override
			public void run() {
				System.out.println("Run threadID: " + Thread.currentThread().getId());
				for (int i = 0; i < 10000; i++){
					new Thread(new Runnable(){
						@Override
						public void run() {
							map.put(UUID.randomUUID().toString(), UUID.randomUUID().toString());
							System.out.println("Run work threadID: " + Thread.currentThread().getId());
						}
					}, "test" + i).start();;
					
				}
			}
			
		});
		
		System.out.println("Main threadID: " + Thread.currentThread().getId());
		
		t.start();
		t.join();
	}
}

  

构建一个hashmap死锁的DEMO

标签:sys   util   except   tostring   rup   dex   int   uuid   ati   

原文地址:http://www.cnblogs.com/chengxin1982/p/6511401.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!