本帖最后由 路漫漫_求索 于 2014-6-4 19:06 编辑
public class _05ThreadScopeShareData {
/**
* 线程范围内的共享数据
* @param args
*/
private static int data = 0;
private static Map<Thread,Integer> threadData = new HashMap<Thread,Integer>(); //1. 疑惑:创建的Map集合,可不可以放在main方法里面呢?
public static void main(String[] args) {
// 使用循环创建两个线程
for(int i=0;i<2;i++){
new Thread(new Runnable(){
@Override
public void run() {
int data = new Random().nextInt()
System.out.println(Thread.currentThread().getName()+"-has put data : "+data)
threadData.put(Thread.currentThread(), data)
new A().get()
new B().get();
}
}){}.start();
}
}
//2. 疑惑:下面的这两个模块,为什么要定义在public class 类的里面? 定在外面不可以嘛?
static class A{
public void get(){
int data = threadData.get(Thread.currentThread());//此数据是从HashMap集合中获取的。
System.out.println("A--"+Thread.currentThread().getName()+"get date : "+data);
}
}
static class B{
public void get(){
int data = threadData.get(Thread.currentThread());
System.out.println("B--"+Thread.currentThread().getName()+"get date : "+data);
}
}
}
|
|