多线程——学习记录2

news2024/11/20 23:17:44

目录

        • 单例模式
          • 两种单例写法
          • 饿汉式和懒汉式的区别
        • Runtime
        • Timer 计时器
        • 两个线程间的通信
          • 关键点:wait()线程等待 和 notify()随机唤醒等待的线程;
        • 三个或三个以上间的线程通信
          • 关键点:notifyAll()唤醒所有线程
        • 线程间通信需要注意的问题
        • JDK1.5的新特性互斥锁
        • 线程组的概述和使用
        • 线程的五种状态
        • 线程池的概述和使用

单例模式

  • 单例设计模式:保证类在内存中只有一个对象。

  • 如何保证类在内存中只有一个对象呢?

    • (1)控制类的创建,不让其他类来创建本类的对象。private
    • (2)在本类中定义一个本类的对象。Singleton s;
    • (3)提供公共的访问方式。 public static Singleton getInstance(){return s}
两种单例写法
  • 第一种单例写法
    • 饿汉式
//饿汉式
class Singleton {
    //1、私有构造函数
    private Singleton() {}

    //2、创建本类对象
    private static Singleton singleton = new Singleton();

    //3、对外提供公共的访问方法
    public static Singleton getInstance() {             //获取实例
        return singleton;
    }
}
  • 第二种单例写法
    • 懒汉式
//懒汉式
class Singleton1 {
    //1、私有构造函数
    private Singleton1() {
    }

    //2、声明一个本类的引用
    private static Singleton1 singleton1;

    //3、对外提供公共的访问方法
    public static Singleton1 getInstance() {         //获取实例
        if (singleton1 == null) {
            singleton1 = new Singleton1();
        }
        return singleton1;
    }
}
饿汉式和懒汉式的区别
  • 1、饿汉式是空间交换时间,懒汉式是时间交换空间
  • 2、在多线程访问时,饿汉式不会创建多个对象,而懒汉式有可能会创建多个对象

Runtime

  • Runtime类是一个单例类,可以获取运行时对象
  public static void main(String[] args) throws IOException {
        Runtime runtime = Runtime.getRuntime();     //获取运行时对象
        //exec在单独的进程中执行指定的字符串命令
        //runtime.exec("shutdown -s -t 300");       //300秒后关机
        runtime.exec("shutdown -a");      //取消关机

    }

在这里插入图片描述

Timer 计时器

线程用其安排以后在后台线程中执行的任务,可安排任务执行一次或者定期重复执行

 public static void main(String[] args) throws IOException, InterruptedException {
        Timer timer = new Timer();
        //在指定时间安排指定任务
        //第一个参数,是安排的任务,第二个参数是执行的时间(执行时间需要当前年份减去1900,月份范围0-11),第三个参数是重复执行的间隔时间
        timer.schedule(new MyTimerTask(),new Date(123,7,22,13,49,30));
        while (true){
            Thread.sleep(1000);
            System.out.println(new Date());
        }
}

class MyTimerTask extends TimerTask {

    @Override
    public void run() {
        System.out.println("起床");
    }
}

在这里插入图片描述

 public static void main(String[] args) throws IOException, InterruptedException {
        Timer timer = new Timer();
        //在指定时间安排指定任务
        //第一个参数,是安排的任务,第二个参数是执行的时间(执行时间需要当前年份减去1900,月份范围0-11),第三个参数是重复执行的间隔时间
        //下面是到了指定时间后每5秒执行一次
        timer.schedule(new MyTimerTask(),new Date(123,7,22,13,49,30),5000);
        while (true){
            Thread.sleep(1000);
            System.out.println(new Date());
        }
    }

class MyTimerTask extends TimerTask {

    @Override
    public void run() {
        System.out.println("起床");
    }
}

在这里插入图片描述

两个线程间的通信

关键点:wait()线程等待 和 notify()随机唤醒等待的线程;
  • 1、什么时候需要通信
    • 多个线程并发执行时, 在默认情况下CPU是随机切换线程的
    • 如果我们希望他们有规律的执行, 就可以使用通信, 例如每个线程执行一次打印
  • 2、怎么通信
    • 如果希望线程等待, 就调用wait()
    • 如果希望唤醒等待的线程, 就调用notify();
    • 这两个方法必须在同步代码中执行, 并且使用同步锁对象来调用
  public static void main(String[] agr) {
        final printer p = new printer();
        new Thread() {
            public void run() {
                while (true) {
                    try {
                        p.print1();
                    } catch (InterruptedException e) {
                        e.printStackTrace();
                    }
                }
            }
        }.start();
        new Thread() {
            public void run() {
                while (true) {
                    try {
                        p.print2();
                    } catch (InterruptedException e) {
                        e.printStackTrace();
                    }
                }
            }
        }.start();
    }

/**
 * 非静态的同步方法的锁对象是this
 * 静态的同步方法的锁对象是该类的字节码对象
 */
class printer {
    private int flag = 1 ;
    public void print1() throws InterruptedException {
        synchronized (this) {
            if (flag != 1){
                this.wait();                            //当前线程等待
            }
            System.out.print("恩");
            System.out.print("施");
            System.out.print("大");
            System.out.print("峡");
            System.out.print("谷");
            System.out.print("\r\n");
            flag = 2;
            this.notify();                                //随机唤醒单个等待的线程
        }
    }

    /*
     * 非静态同步函数的锁是:this
     * 静态的同步函数的锁是:字节码对象
     */
    public void print2() throws InterruptedException {
        synchronized (this) {
            if (flag != 2){
                this.wait();                            //当前线程等待
            }
            System.out.print("屏");
            System.out.print("山");
            System.out.print("景");
            System.out.print("区");
            System.out.print("\r\n");
            flag = 1 ; //改变flag的值,让当前线程等待,唤醒其他等待的线程
            this.notify();                              //随机唤醒单个等待的线程
        }
    }
}

在这里插入图片描述

三个或三个以上间的线程通信

关键点:notifyAll()唤醒所有线程
  • 多个线程通信的问题
    • notify()方法是随机唤醒一个线程
    • notifyAll()方法是唤醒所有线程
    • JDK5之前无法唤醒指定的一个线程
    • 如果多个线程之间通信, 需要使用notifyAll()通知所有线程, 用while来反复判断条件
public class Synchronized {
    public static void main(String[] agr) {
        final printer p = new printer();
        new Thread() {
            public void run() {
                while (true) {
                    try {
                        p.print1();
                    } catch (InterruptedException e) {
                        e.printStackTrace();
                    }
                }
            }
        }.start();
        new Thread() {
            public void run() {
                while (true) {
                    try {
                        p.print2();
                    } catch (InterruptedException e) {
                        e.printStackTrace();
                    }
                }
            }
        }.start();


        new Thread() {
            public void run() {
                while (true) {
                    try {
                        p.print2();
                    } catch (InterruptedException e) {
                        e.printStackTrace();
                    }
                }
            }
        }.start();

        new Thread() {
            public void run() {
                while (true) {
                    try {
                        p.print3();
                    } catch (InterruptedException e) {
                        e.printStackTrace();
                    }
                }
            }
        }.start();
    }
}

/**
 * 非静态的同步方法的锁对象是this
 * 静态的同步方法的锁对象是该类的字节码对象
 */
class printer {
    private int flag = 1 ;
    public void print1() throws InterruptedException {
        synchronized (this) {
            while (flag != 1){
                this.wait();                            //当前线程等待
            }
            System.out.print("恩");
            System.out.print("施");
            System.out.print("大");
            System.out.print("峡");
            System.out.print("谷");
            System.out.print("\r\n");
            flag = 2;
            this.notifyAll();                              //随机唤醒单个等待的线程
        }
    }

    /*
     * 非静态同步函数的锁是:this
     * 静态的同步函数的锁是:字节码对象
     */
    public void print2() throws InterruptedException {
        synchronized (this) {
            while (flag != 2){
                this.wait();                            //当前线程等待
            }
            System.out.print("屏");
            System.out.print("山");
            System.out.print("景");
            System.out.print("区");
            System.out.print("\r\n");
            flag = 3 ; //改变flag的值,让当前线程等待,唤醒其他等待的线程
            this.notifyAll();                              //随机唤醒单个等待的线程
        }
    }

    public void print3() throws InterruptedException {
        synchronized (this) {
            while (flag != 3){                          //while循环是循环判断,每次都会判断标记
                this.wait();                            //当前线程等待
            }
            System.out.print("A");
            System.out.print("B");
            System.out.print("C");
            System.out.print("D");
            System.out.print("E");
            System.out.print("F");
            System.out.print("\r\n");
            flag = 1 ; //改变flag的值,让当前线程等待,唤醒其他等待的线程
            this.notifyAll();                             //随机唤醒单个等待的线程
        }
    }
}

在这里插入图片描述

线程间通信需要注意的问题

  1. 在同步代码块中,用哪个对象锁,就用哪个对象调用wait方法
  2. 为什么wait方法和notify方法定义在object这个类中?
    因为锁对象可以是任意对象,object是所有类的基类,所以wait方法和notify方法定义在object这个类中
  3. sleep方法和wait方法的区别
  • sleep方法必须传入参数,参数就是时间,时间到了自动醒来
    wait方法可以传入参数也可以不传入参数,传入参数就是在参数的时间结束后等待,不传入时间就是直接等待
  • sleep方法在同步函数或同步代码块中,不释放锁
    wait方法在同步函数或者同步代码块中,释放锁

JDK1.5的新特性互斥锁

  • 1.同步
    • 使用ReentrantLock类的lock()和unlock()方法进行同步
  • 2.通信
    • 使用ReentrantLock类的newCondition()方法可以获取Condition对象
    • 需要等待的时候使用Condition的await()方法, 唤醒的时候用signal()方法
    • 不同的线程使用不同的Condition, 这样就能区分唤醒的时候找哪个线程了
import java.util.concurrent.locks.Condition;
import java.util.concurrent.locks.ReentrantLock;

public class Synchronized {
    public static void main(String[] agr) {
        final printer p = new printer();
        new Thread() {
            public void run() {
                while (true) {
                    try {
                        p.print1();
                    } catch (InterruptedException e) {
                        e.printStackTrace();
                    }
                }
            }
        }.start();

        new Thread() {
            public void run() {
                while (true) {
                    try {
                        p.print2();
                    } catch (InterruptedException e) {
                        e.printStackTrace();
                    }
                }
            }
        }.start();


        new Thread() {
            public void run() {
                while (true) {
                    try {
                        p.print3();
                    } catch (InterruptedException e) {
                        e.printStackTrace();
                    }
                }
            }
        }.start();

        new Thread() {
            public void run() {
                while (true) {
                    try {
                        p.print3();
                    } catch (InterruptedException e) {
                        e.printStackTrace();
                    }
                }
            }
        }.start();
    }
}

/**
 * 非静态的同步方法的锁对象是this
 * 静态的同步方法的锁对象是该类的字节码对象
 */
class printer {
    private ReentrantLock r = new ReentrantLock();
    private Condition c1 = r.newCondition();
    private Condition c2 = r.newCondition();
    private Condition c3 = r.newCondition();

    private int flag = 1;

    public void print1() throws InterruptedException {
        r.lock();                                        //获取锁
        if (flag != 1) {
            c1.await();                            //当前线程等待
        }
        System.out.print("恩");
        System.out.print("施");
        System.out.print("大");
        System.out.print("峡");
        System.out.print("谷");
        System.out.print("\r\n");
        flag = 2;
        c2.signal();
        r.unlock();
    }

    /*
     * 非静态同步函数的锁是:this
     * 静态的同步函数的锁是:字节码对象
     */
    public void print2() throws InterruptedException {
        r.lock();
        if (flag != 2) {
            c2.await();                            //当前线程等待
        }
        System.out.print("屏");
        System.out.print("山");
        System.out.print("景");
        System.out.print("区");
        System.out.print("\r\n");
        flag = 3; //改变flag的值,让当前线程等待,唤醒其他等待的线程
        c3.signal();
        r.unlock();

    }

    public void print3() throws InterruptedException {
        r.lock();
        if (flag != 3) {                         
            c3.await();                            //当前线程等待
        }
        System.out.print("A");
        System.out.print("B");
        System.out.print("C");
        System.out.print("D");
        System.out.print("E");
        System.out.print("F");
        System.out.print("\r\n");
        flag = 1; //改变flag的值,让当前线程等待,唤醒其他等待的线程
        c1.signal();
        r.unlock();

    }
}

在这里插入图片描述

线程组的概述和使用

A:线程组概述

  • Java中使用ThreadGroup来表示线程组,它可以对一批线程进行分类管理,Java允许程序直接对线程组进行控制。
  • 默认情况下,所有的线程都属于主线程组。
    • public final ThreadGroup getThreadGroup()//通过线程对象获取他所属于的组
    • public final String getName()//通过线程组对象获取他组的名字
  • 给线程设置分组
    • 1,ThreadGroup(String name) 创建线程组对象并给其赋值名字
    • 2,创建线程对象
    • 3,Thread(ThreadGroup?group, Runnable?target, String?name)
    • 4,设置整组的优先级或者守护线程
public class ThreadGroup {
    public static void main(String[] agr) {
        //demo1();
        java.lang.ThreadGroup tg = new java.lang.ThreadGroup("我是一个新的线程组");          //创建新的线程组
        MyRunnable myRunnable = new MyRunnable();                                               //创建Runnable的子类对象

        Thread t1 = new Thread(tg,myRunnable,"张三");                                      //将线程t1放在组中
        Thread t2 = new Thread(tg,myRunnable,"李四");                                      //将线程t2放在组中

        System.out.println(t1.getThreadGroup().getName());                                      //获取名字
        System.out.println(t2.getThreadGroup().getName());

        //通过组名称设置后台线程,表示改组的线程都是后台线程
        tg.setDaemon(true);
    }

    private static void demo1() {
        MyRunnable myRunnable = new MyRunnable();
        Thread t1 = new Thread(myRunnable, "线程1");
        Thread t2 = new Thread(myRunnable, "线程2");

        java.lang.ThreadGroup tg1 = t1.getThreadGroup();
        java.lang.ThreadGroup tg2 = t2.getThreadGroup();

        System.out.println(tg1.getName());              //默认是主程序
        System.out.println(tg2.getName());
    }
}

class MyRunnable implements Runnable {

    @Override
    public void run() {
        for (int i = 0; i < 1000; i++) {
            System.out.println(Thread.currentThread().getName() + "....." + i);
        }
    }
}

在这里插入图片描述

线程的五种状态

在这里插入图片描述

线程池的概述和使用

  • :线程池概述
    • 程序启动一个新线程成本是比较高的,因为它涉及到要与操作系统进行交互。而使用线程池可以很好的提高性能,尤其是当程序中要创建大量生存期很短的线程时,更应该考虑使用线程池。线程池里的每一个线程代码结束后,并不会死亡,而是再次回到线程池中成为空闲状态,等待下一个对象来使用。在JDK5之前,我们必须手动实现自己的线程池,从JDK5开始,Java内置支持线程池
  • B:内置线程池的使用概述
    • JDK5新增了一个Executors工厂类来产生线程池,有如下几个方法
      • public static ExecutorService newFixedThreadPool(int nThreads)
      • public static ExecutorService newSingleThreadExecutor()
      • 这些方法的返回值是ExecutorService对象,该对象表示一个线程池,可以执行Runnable对象或者Callable对象代表的线程。它提供了如下方法
      • Future<?> submit(Runnable task)
      • Future submit(Callable task)
    • 使用步骤:
      • 创建线程池对象
      • 创建Runnable实例
      • 提交Runnable实例
      • 关闭线程池
import java.util.concurrent.ExecutorService;
import java.util.concurrent.Executors;


public class Demo5_Executors {
    public static void main(String[] agr) {
        ExecutorService pool = Executors.newFixedThreadPool(2);  //创建线程池
        pool.submit(new MyRunnable());                                    //将线程放进线程池并执行
        pool.submit(new MyRunnable());

        pool.shutdown();                                                  //关闭线程池
    }
}

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.coloradmin.cn/o/916776.html

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈,一经查实,立即删除!

相关文章

RT-Thread学习——简介

简介 RT-Thread是一个实时操作系统&#xff0c;移植到stm32单片机上。 常见的操作系统&#xff1a; Windows、Linux、MAC安卓、IOS鸿蒙操作系统 RT-Thread是一个集实时操作系统&#xff08;RTOS&#xff09;内核、中间件组件和开发者社区于一体的技术平台。 RT-Thread也是…

【SpringCloud技术专题】「Gateway网关系列」(2)微服务网关服务的Gateway功能配置指南分析

Spring Cloud Gateway简介 Spring Cloud Gateway是Spring Cloud体系的第二代网关组件&#xff0c;基于Spring 5.0的新特性WebFlux进行开发&#xff0c;底层网络通信框架使用的是Netty&#xff0c;所以其吞吐量高、性能强劲&#xff0c;未来将会取代第一代的网关组件Zuul。Spri…

【GeoDa实用技巧100例】022:geoda生成空间权重矩阵(邻接矩阵、距离矩阵)

geoda生成空间权重矩阵(邻接矩阵、距离矩阵),车式矩阵、后式矩阵、K邻接矩阵。 文章目录 一、概述二、“车式”邻接的gal文档生成三、“后式”邻接gal文档生成四、k最近邻居gat文档生成五、查看gal和gat文档一、概述 空间权重矩阵(或相应的表格形式)一般需要用计算机软件生…

【音视频处理】转编码H264 to H265,FFmpeg,代码分享讲解

大家好&#xff0c;欢迎来到停止重构的频道。 本期我们讨论音视频文件转编码&#xff0c;如将视频H264转H265等。 内容中所提及的代码都会放在GitHub&#xff0c;感兴趣的小伙伴可以到GitHub下载。 我们按这样的顺序展开讨论&#xff1a;​ 1、 编码的作用 2、 转编码的…

基于 Github 平台的 .NET 开源项目模板. 嘎嘎实用!

简介 大家好,为了使开源项目的维护和管理更方便一些,出于个人需求写了一款开源项目的模板,该模板基于 Github 平台,并使用 .NET 来实现管道功能. 在接受过实战检验后, 于今天开源, 项目地址:GitHub - night-moon-studio/Template 定位 以下5种境地的同学可以继续往下读一读:…

《剑指Offer》模块2 二叉树【15道二叉树帮助你掌握二叉树】

二叉树 二叉树1. 树中两个结点的最低公共祖先方法一&#xff1a;公共路径方法二&#xff1a;递归 2. 重建二叉树根据前序遍历和中序遍历 得到树 补充题&#xff1a;树的遍历 3. 二叉树的下一个节点4. 树的子结构&#xff08; 递归中调用递归 &#xff09;5. 二叉树的镜像&#…

解密七夕节快递速度之谜:物流行业的幕后功臣

又是一年七夕&#xff0c;今年爱情总是伴随着太多的不确定性&#xff0c;突然的通知、滞留的快递、延期的演出...在这个特殊的日子里&#xff0c;大多数人都会选择通过网购礼物传递爱意和祝福。在此&#xff0c;快递物流就扮演着至关重要的角色。 在七夕节前后&#xff0c;快递…

解决政务审计大数据传输难题!镭速传输为政务行业提供解决方案

政务行业是国家治理的重要组成部分&#xff0c;涉及到国家安全、社会稳定、民生福祉等方面。随着信息技术的快速发展和革新&#xff0c;政务信息化也迎来了新一轮的升级浪潮。国家相继出台了《国家信息化发展战略纲要》《“十三五”国家信息化规划》《“十四五”推进国家政务信…

新生开学必备攻略|开学必备数码产品清单合集

​新学期将至&#xff0c;有哪些需要准备的东西呢&#xff1f;知道大家都正在为摊开的行李箱发愁&#xff0c;小篇特地整理了一份开学必备的《开学数码产品清单合集》&#xff0c;来抄作业吧&#xff0c;各位&#xff01; 推荐一&#xff1a;南卡00压蓝牙耳机 不入耳设计&…

Vue2学习笔记のvuex

目录 vuex1.概念2.何时使用&#xff1f;3.搭建vuex环境4.基本使用5.getters的使用6.四个map方法的使用7.模块化命名空间 hello, 本文是Vue2学习笔记的第5篇&#xff1a;vuex。 vuex 1.概念 在Vue中实现集中式状态&#xff08;数据&#xff09;管理的一个Vue插件&#xff0c;对…

有些网络通信协议? - 易智编译EaseEditing

网络通信协议是计算机网络中用于实现数据传输和通信的规则和标准。以下是一些常见的网络通信协议&#xff1a; TCP/IP协议&#xff1a; 是互联网的核心协议&#xff0c;包括传输控制协议&#xff08;TCP&#xff09;和网际协议&#xff08;IP&#xff09;。TCP负责数据的可靠传…

Linux 计算机网络基础概论

一、网络基本概念 1、网络 网络是由若干节点和连接这些结点的链路组成&#xff0c;网络中的结点可以是计算机、交换机、路由器等设备。通俗地说就是把不同的主机连接起来就构成了一个网络&#xff0c;构成网路的目的是为了信息交互、资源共享。 网络设备有&#xff1a;交换机…

数字化浪潮中的稳定之锚:项目敏捷性与灵活性的秘密

引言 在这个日新月异的数字化时代&#xff0c;企业和团队面临着前所未有的挑战。技术的快速发展、客户需求的不断变化以及全球化的竞争环境都要求我们重新思考项目管理的方法。在这样的背景下&#xff0c;敏捷性和灵活性成为了项目成功的关键。 当前数字化时代的挑战与机遇 …

Mimikatz免杀实战:绕过360核晶和defender

文章目录 前言绕过360核晶实现思路完整代码运行测试 绕过WD实现思路MiniDumpWriteDump回调函数加密dump文件 完整代码运行测试 参考文章 前言 通常来说&#xff0c;即使我们成功实现了mimikatz的静态免杀&#xff0c;其抓取hash的行为仍可能会被防病毒软件检测到虽然你可以通过…

基于VUE3+Layui从头搭建通用后台管理系统(前端篇)十:实体配置功能实现

一、本章内容 本章实现实体配置功能,包括识别实体属性、设置各属性的展示方式、相关类型、要和展示、编辑的内容等。 1. 详细课程地址: 待发布 2. 源码下载地址: 待发布 二、界面预览 三、开发视频 3.1 B站视频地址:

与ChatGPT可以经常互动但也不要暴露自己

​ 全球亿万人使用ChatGPT&#xff0c;但这并不意味着你的个人信息数据就可以安全无忧。要特别注意的&#xff0c;而且很多人已经忽视了的&#xff1a;用户最好不要过多地提供有关自己的私密信息&#xff0c;虽然多数情况下你并不知道自己是怎么把信息泄露的。 首先&#xff0…

绝美的古诗词AI作画,惊艳到我了!

前言 时光荏苒&#xff0c;科技的飞速发展催生出了许多令人惊叹的创新成果。近年来&#xff0c;人工智能技术在艺术领域的应用日益引人注目&#xff0c;其中最为引人瞩目的莫过于AI作画。这项技术将传统的古诗词与现代的人工智能相结合&#xff0c;创造出一幅幅令人叹为观止的…

Godot 4.0 文件系统特性的总结

文件的路径和特点(常规知识) 这一部分官方文档讲得比较详细,我这里简单提一下。 Godot会对文件进行组织,从而将它们管理起来,引擎的使用者要访问被管理的文件,需要遵循这样的规定: 使用Godot提供的函数和类访问文件 个人发现常用的有这些: ResourceLoader类、GD.Load()、God…

Jenkins的定时任务配置

jenkins配置定时任务位置(点击日程表的问好可查看语法配置) jenkins的定时任务的参数 # 定时任务参数(每个参数之间使用tab键或空格分隔)MINUTE HOUR DOM MONTH DOW 参数解释取值范围 MINUTE 分钟0-59HOUR小时0-23DOM一月的天数1-31MONTH月份1-12DOW 一周的天数0…

2023.8 - java - StringBuffer 和 StringBuilder 类

当对字符串进行修改的时候&#xff0c;需要使用 StringBuffer 和 StringBuilder 类。 注意:String 类是不可改变的&#xff0c;所以你一旦创建了 String 对象&#xff0c;那它的值就无法改变了 如果需要对字符串做很多修改&#xff0c;那么应该选择使用 StringBuffer & S…