zoukankan      html  css  js  c++  java
  • java 多线程 day05 线程范围内的数据共享

    import java.util.HashMap;
    import java.util.Map;
    import java.util.Random;
    /**
    * Created by chengtao on 17/12/3.
    * 线程范围内的数据共享:即模块从不同的线程获取到的值是不一样的
    * 可以通过 hashMap<thread,data> 来将线程和对应的值通过map来区分
    */

    public class Thread0501_ThreadScopeShareData {

    private static int data = 0;
    public static void main(String[] args) {
    for(int i=0;i<2;i++){
    new Thread(new Runnable(){
    public void run() {
    data = new Random().nextInt();
    System.out.println(Thread.currentThread().getName()
    + " has put data :" + data);
    new A().get();
    new B().get();
    }
    }).start();
    }
    }

    static class A{
    public void get(){
    System.out.println("A from " + Thread.currentThread().getName() + " get data :" + data);
    }
    }

    static class B{
    public void get(){
    System.out.println("B from " + Thread.currentThread().getName() + " get data :" + data);
    }
    }
    }




    ----------------------------
    ----------------------------
    ----------------------------
    import java.util.HashMap;
    import java.util.Map;
    import java.util.Random;

    /**
    * Created by chengtao on 17/12/3.
    * 线程间的数据共享
    */



    public class Thread0502_ThreadScopeShareData {

    private static int data = 0;
    private static Map<Thread, Integer> threadData = new HashMap<Thread, Integer>();
    public static void main(String[] args) {
    for(int i=0;i<2;i++){
    new Thread(new Runnable(){
    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();
    }
    }

    static class A{
    public void get(){
    int data = threadData.get(Thread.currentThread());
    System.out.println("A from " + Thread.currentThread().getName()
    + " get data :" + data);
    }
    }

    static class B{
    public void get(){
    int data = threadData.get(Thread.currentThread());
    System.out.println("B from " + Thread.currentThread().getName()
    + " get data :" + data);
    }
    }
    }
  • 相关阅读:
    HTML链接/实施CSS的三种方法
    XML之Well-Formed文档规则
    【摘】SVN提交与版本冲突
    Web开发之404小结
    TCP 连接的要点
    [转] Epoll 相对Poll和Select的优点
    [转] 剖析 epoll ET/LT 触发方式的性能差异误解(定性分析)
    GDB调试技巧
    [转] 关于c++的头文件依赖
    [转] Linux中gcc,g++常用编译选项
  • 原文地址:https://www.cnblogs.com/ctaixw/p/7967538.html
Copyright © 2011-2022 走看看