1、多线程之间如何实现通讯

1.1、什么是多线程之间通讯?

多线程之间通讯,其实就是多个线程在操作同一个资源,但是操作的动作不同。

画图演示

1.2、多线程之间通讯需求

需求:第一个线程写入(input)用户,另一个线程取读取(out)用户.实现读一个,写一个操作。

2、代码实现基本实现

2.1、共享资源源实体类

class Res {

     public String userSex;

     public String userName;

}

输入线程资源

class IntThrad extends Thread {

private Res res;

public IntThrad(Res res) {

this.res = res;

}

@Override

public void run() {

int count = 0;

while (true) {

if (count == 0) {

res.userName = "余胜军";

res.userSex = "男";

} else {

res.userName = "小紅";

res.userSex = "女";

}

count = (count + 1) % 2;

}

}

}

输出线程

class OutThread extends Thread {

      private Res res;

 

      public OutThread(Res res) {

           this.res = res;

      }

 

      @Override

      public void run() {

           while (true) {

                      System.out.println(res.userName + "--" + res.userSex);

           }

      }

}

运行代码

Res res = new Res();

IntThrad intThrad = new IntThrad(res);

OutThread outThread = new OutThread(res);

intThrad.start();

outThread.start();

运行代码

 

注意:数据发生错乱,造成线程安全问题

解决线程安全问题

IntThrad 加上synchronized

class IntThrad extends Thread {

private Res res;

public IntThrad(Res res) {

this.res = res;

}

@Override

public void run() {

int count = 0;

while (true) {

synchronized (res) {

if (count == 0) {

res.userName = "余胜军";

res.userSex = "男";

} else {

res.userName = "小紅";

res.userSex = "女";

}

count = (count + 1) % 2;

}

}

}

}

输出线程加上synchronized

class Res {

     public String userName;

     public String sex;

}

 

class InputThread extends Thread {

     private Res res;

 

     public InputThread(Res res) {

         this.res = res;

     }

 

     @Override

     public void run() {

         int count = 0;

         while (true) {

               synchronized (res) {

              if (count == 0) {

                   res.userName = "余胜军";

                   res.sex = "";

              } else {

                   res.userName = "小红";

                   res.sex = "";

              }

              count = (count + 1) % 2;

         }

 

         }

     }

}

 

class OutThrad extends Thread {

     private Res res;

 

     public OutThrad(Res res) {

         this.res = res;

     }

 

     @Override

     public void run() {

         while (true) {

              synchronized (res) {

                   System.out.println(res.userName + "," + res.sex);

              }

         }

 

     }

}

 

public class ThreadDemo01 {

 

     public static void main(String[] args) {

         Res res = new Res();

         InputThread inputThread = new InputThread(res);

         OutThrad outThrad = new OutThrad(res);

         inputThread.start();

         outThrad.start();

     }

 

}

 

wait()、notify、notifyAll()方法

wait()、notify()、notifyAll()是三个定义在Object类里的方法,可以用来控制线程的状态。

这三个方法最终调用的都是jvm级的native方法。随着jvm运行平台的不同可能有些许差异。

如果对象调用了wait方法就会使持有该对象的线程把该对象的控制权交出去,然后处于等待状态。

如果对象调用了notify方法就会通知某个正在等待这个对象的控制权的线程可以继续运行。

如果对象调用了notifyAll方法就会通知所有等待这个对象控制权的线程继续运行。

注意:一定要在线程同步中使用,并且是同一个锁的资源

class Res {

     public String userSex;

     public String userName;

     //线程通讯标识

     public boolean flag = false;

}

 

class IntThrad extends Thread {

private Res res;

public IntThrad(Res res) {

this.res = res;

}

@Override

public void run() {

int count = 0;

while (true) {

synchronized (res) {

if (res.flag) {

try {

// 当前线程变为等待,但是可以释放锁

res.wait();

} catch (Exception e) {

}

}

if (count == 0) {

res.userName = "余胜军";

res.userSex = "男";

} else {

res.userName = "小紅";

res.userSex = "女";

}

count = (count + 1) % 2;

res.flag = true;

// 唤醒当前线程

res.notify();

}

}

}

}

class OutThread extends Thread {

private Res res;

public OutThread(Res res) {

this.res = res;

}

@Override

public void run() {

while (true) {

synchronized (res) {

if (!res.flag) {

try {

res.wait();

} catch (Exception e) {

// TODO: handle exception

}

}

System.out.println(res.userName + "--" + res.userSex);

res.flag = false;

res.notify();

}

}

}

}

public class ThreaCommun {

public static void main(String[] args) {

Res res = new Res();

IntThrad intThrad = new IntThrad(res);

OutThread outThread = new OutThread(res);

intThrad.start();

outThread.start();

}

}

wait与sleep区别?

对于sleep()方法,我们首先要知道该方法是属于Thread类中的。而wait()方法,则是属于Object类中的。

sleep()方法导致了程序暂停执行指定的时间,让出cpu该其他线程,但是他的监控状态依然保持者,当指定的时间到了又会自动恢复运行状态。

在调用sleep()方法的过程中,线程不会释放对象锁。

而当调用wait()方法的时候,线程会放弃对象锁,进入等待此对象的等待锁定池,只有针对此对象调用notify()方法后本线程才进入对象锁定池准备

获取对象锁进入运行状态。

JDK1.5-Lock

在 jdk1.5 之后,并发包中新增了 Lock 接口(以及相关实现类)用来实现锁功能,Lock 接口提供了与 synchronized 关键字类似的同步功能,但需要在使用时手动获取锁和释放锁。

Lock写法

Lock lock  = new ReentrantLock();

lock.lock();

try{

//可能会出现线程安全的操作

}finally{

//一定在finally中释放锁

//也不能把获取锁在try中进行,因为有可能在获取锁的时候抛出异常

lock.ublock();

}

Lock 接口与 synchronized 关键字的区别

Lock 接口可以尝试非阻塞地获取锁 当前线程尝试获取锁。如果这一时刻锁没有被其他线程获取到,则成功获取并持有锁。
Lock 接口能被中断地获取锁 与 synchronized 不同,获取到锁的线程能够响应中断,当获取到的锁的线程被中断时,中断异常将会被抛出,同时锁会被释放。

Lock 接口在指定的截止时间之前获取锁,如果截止时间到了依旧无法获取锁,则返回。

Condition用法

 Condition的功能类似于在传统的线程技术中的,Object.wait()和Object.notify()的功能。

代码

Condition condition = lock.newCondition();

res. condition.await();  类似wait

res. Condition. Signal() 类似notify

 

class Res {

public String userName;

public String sex;

public boolean flag = false;

Lock
lock = new ReentrantLock();

}

class InputThread extends Thread {

private Res res;

Condition
newCondition;

public InputThread(Res res,  Condition newCondition) {

this.res = res;

this.newCondition=newCondition;

}

@Override

public void run() {

int count = 0;

while (true) {

// synchronized (res) {

try {

res.lock.lock();

if (res.flag) {

try {

//                                res.wait();

newCondition.await();

}
catch (Exception e) {

// TODO: handle exception

}

}

if (count == 0) {

res.userName = "余胜军";

res.sex = "男";

}
else {

res.userName = "小红";

res.sex = "女";

}

count = (count + 1) % 2;

res.flag = true;

//                    res.notify();

newCondition.signal();

}
catch (Exception e) {

// TODO: handle exception

}finally {

res.lock.unlock();

}

}

// }

}

}

class OutThrad extends Thread {

private Res res;

private Condition newCondition;

public OutThrad(Res res,Condition newCondition) {

this.res = res;

this.newCondition=newCondition;

}

@Override

public void run() {

while (true) {

//               synchronized (res) {

try {

res.lock.lock();

if (!res.flag) {

try {

//                                res.wait();

newCondition.await();

}
catch (Exception e) {

// TODO: handle exception

}

}

System.out.println(res.userName + "," + res.sex);

res.flag = false;

//                    res.notify();

newCondition.signal();

}
catch (Exception e) {

// TODO: handle exception

}finally {

res.lock.unlock();

}

//               }

}

}

}

public class ThreadDemo01 {

public static void main(String[] args) {

Res
res = new Res();

Condition
newCondition = res.lock.newCondition();

InputThread
inputThread = new InputThread(res,newCondition);

OutThrad
outThrad = new OutThrad(res,newCondition);

inputThread.start();

outThrad.start();

}

}

 

如何停止线程?

停止线程思路

1.  使用退出标志,使线程正常退出,也就是当run方法完成后线程终止。

2.  使用stop方法强行终止线程(这个方法不推荐使用,因为stop和suspend、resume一样,也可能发生不可预料的结果)。

3.  使用interrupt方法中断线程。

代码:

class StopThread implements Runnable {

      private boolean flag = true;

 

      @Override

      public synchronized void run() {

           while (flag) {

                 try {

                      wait();

                 } catch (Exception e) {

                      //e.printStackTrace();

                      stopThread();

                 }

                 System.out.println("thread run..");

           }

      }

      /**

       *

       *
@methodDesc: 功能描述:(停止线程)

       *
@author: 余胜军

       *
@param:

       *
@createTime:2017820日 下午8:07:34

       *
@returnType: void

       *
@copyright:上海每特教育科技有限公司

       */

      public void stopThread() {

           flag = false;

      }

}

/**

 *

 * @classDesc: 功能描述:(停止线程)

 * @author: 余胜军

 * @createTime: 2017820日 下午8:05:25

 * @version: v1.0

 * @copyright:上海每特教育科技有限公司

 */

public class StopThreadDemo {

 

      public static void main(String[] args) {

           StopThread stopThread1 = new StopThread();

           Thread thread1 = new Thread(stopThread1);

           Thread thread2 = new Thread(stopThread1);

           thread1.start();

           thread2.start();

           int i = 0;

           while (true) {

                 System.out.println("thread main..");

                 if (i == 300) {

                      // stopThread1.stopThread();

                      thread1.interrupt();

                      thread2.interrupt();

                      break;

                 }

                 i++;

           }

 

      }

 

}

 

ThreadLoca

什么是ThreadLoca

ThreadLocal提高一个线程的局部变量,访问某个线程拥有自己局部变量。

当使用ThreadLocal维护变量时,ThreadLocal为每个使用该变量的线程提供独立的变量副本,所以每一个线程都可以独立地改变自己的副本,而不会影响其它线程所对应的副本。

ThreadLocal的接口方法

ThreadLocal类接口很简单,只有4个方法,我们先来了解一下:

  • void
    set(Object value)设置当前线程的线程局部变量的值。
  • public
    Object get()该方法返回当前线程所对应的线程局部变量。
  • public
    void remove()将当前线程局部变量的值删除,目的是为了减少内存的占用,该方法是JDK
    5.0新增的方法。需要指出的是,当线程结束后,对应该线程的局部变量将自动被垃圾回收,所以显式调用该方法清除线程的局部变量并不是必须的操作,但它可以加快内存回收的速度。
  • protected
    Object initialValue()返回该线程局部变量的初始值,该方法是一个protected的方法,显然是为了让子类覆盖而设计的。这个方法是一个延迟调用方法,在线程第1次调用get()或set(Object)时才执行,并且仅执行1次。ThreadLocal中的缺省实现直接返回一个null。

案例:创建三个线程,每个线程生成自己独立序列号。

代码:

class Res {

    // 生成序列号共享变量

    public static Integer count = 0;

    public static
ThreadLocal<Integer>
threadLocal = new
ThreadLocal<Integer>() {

        protected Integer
initialValue() {

 

            return 0;

        };

 

    };

 

    public Integer getNum() {

        int count = threadLocal.get() + 1;

        threadLocal.set(count);

        return count;

    }

}

 

public class ThreadLocaDemo2 extends Thread {

    private Res res;

 

    public ThreadLocaDemo2(Res res) {

        this.res = res;

    }

 

    @Override

    public void run() {

        for (int i = 0; i < 3; i++) {

            System.out.println(Thread.currentThread().getName()
+
"---" + "i---" + i + "--num:" + res.getNum());

        }

 

    }

 

    public static void main(String[] args) {

        Res res = new Res();

        ThreadLocaDemo2 threadLocaDemo1 = new ThreadLocaDemo2(res);

        ThreadLocaDemo2 threadLocaDemo2 = new ThreadLocaDemo2(res);

        ThreadLocaDemo2 threadLocaDemo3 = new ThreadLocaDemo2(res);

        threadLocaDemo1.start();

        threadLocaDemo2.start();

        threadLocaDemo3.start();

    }

 

}

ThreadLoca实现原理

ThreadLoca通过map集合

Map.put(“当前线程”,值);

【java】-- 多线程之间实现通讯的更多相关文章

  1. python处理多线程之间事件通讯方法

    一.什么是事件 每执行一个事情,肯定有该事情的执行后状态,那事件就是该事情发生的信号 在程序中,多线程之间需要通讯,而事件就是方便线程之间的通讯 案例: 1.服务器启动需要5秒 2.客服端启动后去链接 ...

  2. java 中多线程之间的通讯之生产者和消费者 (多个线程之间的通讯)

    在真实开发 中关于多线程的通讯的问题用到下边的例子是比较多的 不同的地方时if 和while 的区别 如果只是两个线程之间的通讯,使用if是没有问题的. 但是在多个线程之间就会有问题 /* * 这个例 ...

  3. Java 多线程间的通讯

    在前一小节,介绍了在多线程编程中使用同步机制的重要性,并学会了如何实现同步的方法来正确地访问共享资源.这些线程之间的关系是平等的,彼此之间并不存在任何依赖,它们各自竞争CPU资源,互不相让,并且还无条 ...

  4. java多线程之间的顺序问题

    java 多线程: 这样写有问题的:这样写可以的: package com.test; import java.util.concurrent.CountDownLatch; import java. ...

  5. Java 线程之间的通讯,等待唤醒机制

    public class ThreadNotifySample { public static void main(String[] args) { // Res res = new Res(); / ...

  6. java 中多线程之间的通讯之等待唤醒机制

    wait notify () nitifyAll () 都使用在同步中,因为要对持有监视器(锁)的线程操作 所以要使用在同步中,因为只有同步才具有锁 为什么这些操作线程的方法要定义object类中呢 ...

  7. JAVA多线程之间共享数据BlockingQueue介绍

    在JAVA的Concurrent包中,BlockingQueue很好的解决了多线程中,如何高效安全“传输”数据的问题.通过这些高效并且线程安全的队列类,为我们快速搭建高质量的多线程程序带来极大的便利. ...

  8. Java 多线程Socket编程通讯--实现聊天室代码

    1.创建服务器类 import java.io.IOException; import java.net.ServerSocket; import java.net.Socket; import ja ...

  9. java多线程之间的通信

    目的 如何让两个线程依次执行? 那如何让 两个线程按照指定方式有序交叉运行呢? 四个线程 A B C D,其中 D 要等到 A B C 全执行完毕后才执行,而且 A B C 是同步运行的 三个运动员各 ...

随机推荐

  1. nginx配置vue项目部署访问无问题,刷新出现404问题

    现象: 在浏览器中直接访问www.test.com/api1/login会404.但如果你先访问www.test.com后再点“登录" 跳转到www.test.com/api1/login是 ...

  2. uCos-II中任务的同步与通信

    任务的同步与通信 任务间的同步 在多任务合作工作过程中,操作系统要解决两个问题: 各任务间应该具有一种互斥关系,即对某些共享资源,如果一个任务正在使用,则其他任务只能等待,等到该任务释放资源后,等待任 ...

  3. Axure PR的使用

    1759139 王越 Axure RP是美国Axure Software Solution公司旗舰产品,是一个专业的快速原型设计工具,让负责定义需求和规格.设计功能和界面的专家能够快速创建应用软件或W ...

  4. PHP代码审计之XSS操作

    XSS XSS是Cross Site Scripting(跨站脚本攻击), 它与sql注入攻击类似,SQL注入攻击中以SQL语句作为用户输入,从而达到查询/修改/删除的目的,而在XSS攻击中,通过插入 ...

  5. Tree POJ - 1741【树分治】【一句话说清思路】

    因为该博客的两位作者瞎几把乱吹(" ̄︶ ̄)人( ̄︶ ̄")用彼此的智慧总结出了两条全新的定理(高度复杂度定理.特异根特异树定理),转载请务必说明出处.(逃 Pass:anuonei, ...

  6. package.json 里的 dependencies和devDependencies区别

    dependencies(依赖的意思): 通过 --save 安装,是需要发布到生产环境的.比如项目中使用react,那么没有这个包的依赖就会报错,因此把依赖写入dependencies devDep ...

  7. 在线制作微信跳转浏览器下载app/打开指定页面源码

    微信自动跳转外部浏览器下载app/打开指定页面源码 源码说明: 适用安卓和苹果系统,支持任何网页链接.并且无论链接是否已经被微信拦截,均可实现微信内自动跳转浏览器打开. 生成的跳转链接具有极佳的防拦截 ...

  8. further configuration avilable 不见了

    Dynameic Web Module的further configuration avilable  不见了 打开目录下的 org.eclipse.wst.common.project.facet. ...

  9. jQuery新版本没有了Toggle事件,两个按钮分别控制隐藏显示,同时这两个按钮点击也要互斥。

    十二月没来得及整理发布,一直在草稿箱.现在已经2019年1月了... 需求大概是这样的 //XX点击事件 var flagBar = 0; $("#doNotBaseRate"). ...

  10. ffmpeg推流方式采用TCP协议

    ffmpeg默认推流方式采用UDP方式,若需要使用TCP协议,则需要修改. 1.使用命令时: ffmpeg 跟参数 -rtsp_transport tcp 2.编码时 AVFormatContext ...