【Java多线程】Thread类的基本用法

目录

Thread类

1、创建线程

1.1、继承 Thread,重写run

1.2、实现 Runnable,重写run

1.3、使用匿名内部类,继承 Thread,重写run

1.4、使用匿名内部类,实现 Runnable,重写run

1.5、使用 lambda 表达式(最常用)

2、终止线程

2.1、通过共享的标记来进行沟通

2.2、调用 interrupt() 方法来通知 

3、等待线程

4、获取线程实例

Thread类

 

1、创建线程

线程的创建方法一共有五种,其中lambda表达式的创建方式最为常用,这里简单的给大家介绍一下这五种创建。

1.1、继承 Thread,重写run

class MyThread2 extends Thread {   //创建一个类继承Thread,并重写run@Overridepublic void run() {   System.out.println("hello thread");}
}public class ThreadDemo2 {public static void main(String[] args) {Thread t = new MyThread2();   //创建MyThread类的实例t.start();   //调用start方法启动线程}
}

1.2、实现 Runnable,重写run

Thread(Runnable target),使用runnable对象创建线程对象。

class MyThread3 implements Runnable {   //实现Runnable接口@Overridepublic void run() {System.out.println("hello runnable");}
}public class ThreadDemo3 {public static void main(String[] args) {Runnable runnable = new MyThread3();  //创建runnable对象Thread t = new Thread(runnable);   //将runnable对象作为target参数t.start();   //start启动线程}
}

1.3、使用匿名内部类,继承 Thread,重写run

public class ThreadDemo4 {public static void main(String[] args) {Thread t = new Thread() {   //继承thread类的匿名内部类@Overridepublic void run() {System.out.println("hello thread");}};t.start();}
}

1.4、使用匿名内部类,实现 Runnable,重写run

public class ThreadDemo5 {public static void main(String[] args) {Thread t = new Thread(new Runnable() {   //实现Runnable接口的匿名内部类@Overridepublic void run() {System.out.println("hello runnable");}});t.start();}
}

1.5、使用 lambda 表达式(最常用)

public class ThreadDemo6 {public static void main(String[] args) {Thread t = new Thread(() -> {   //实现Runnable接口重写run的lambda写法【推荐使用】System.out.println("hello thread");});t.start();}
}

2、终止线程

有时我们需要让正在执行的线程终止,为了让线程能够停止,需要添加一些机制。

2.1、通过共享的标记来进行沟通

public class ThreadInterrupt {public static boolean isQuit = false;   //设置标志位isQuit充当控制开关public static void main(String[] args) throws InterruptedException {Thread t = new Thread(() -> {while (!isQuit) {    //控制while终止System.out.println("hello thread");try {Thread.sleep(1000);   //让每个打印间隔1秒} catch (InterruptedException e) {e.printStackTrace();}}System.out.println("线程执行完毕");});t.start();Thread.sleep(3000);   //sleep睡眠3秒后再修改标志位isQuit = true;}
}

2.2、调用 interrupt() 方法来通知 

        使用 Thread.interrupted() 或者 Thread.currentThread().isInterrupted() 代替自定义标识位。

        其中,Thread.currentThread() 表示获取当前线程实例,类似于 this 。而这里没有直接使用this是因为此处的Thread线程使用的是匿名内部类,无法通过this获取当前实例。

        最后使用 interrupt() 进行终止线程。

    public static void main(String[] args) throws InterruptedException {Thread t = new Thread(() -> {while (!Thread.currentThread().isInterrupted()) {System.out.println("hello thread");try {Thread.sleep(1000);   //让每个打印间隔1秒} catch (InterruptedException e) {break;   //注意此处需要添加break,因为sleep会清空interrupted标志位}}System.out.println("线程执行完毕");});t.start();Thread.sleep(3000);   //sleep睡眠3秒后再调用interrupt终止线程t.interrupt();}

3、等待线程

多个线程的执行顺序是不确定的(随机调度,抢占式执行)

虽然线程底层的调度是随机的,但是可以在应用程序中,通过一些api,来影响到线程的调度顺序使用join就是其中一种方式,join()方法可以确定线程的结束顺序

public static void main(String[] args) {Thread t1 = new Thread(() -> {   System.out.println("hello thread1");});Thread t2 = new Thread(() -> {   System.out.println("hello thread2");});t1.start();   //此时t1线程开始执行t1.join();    //等待t1结束后再执行下面代码t2.start();   //此时t2线程开始执行t2.join();    //等待t2结束后再执行下面代码System.out.println("hello main");   //最后执行main主线程中的打印}

【谁调用,谁等待】main方法中调用t.join(),main主线程就阻塞等待t线程结束,再继续执行。

典型的使用场景:
使用多个线程并发进行一系列计算,用一个线程阻塞等待上述计算线程,等到所有的线程都计算完了,最终这个线程汇总结果。

4、获取线程实例

有两种获取线程实例的方法,一种是 this ,另一种是 Thread.currentThread() 。

其中需要注意的是:this不能使用到匿名内部类中,因此匿名内部类只能通过Thread.currentThread() 来获取实例。

class MyThread extends Thread {@Overridepublic void run() {System.out.println("MyThread :"+this.getName());   //使用this直接获取实例}
}
public class GetThread {public static void main(String[] args) throws InterruptedException {Thread t1 = new Thread(() -> {Thread thread = Thread.currentThread();   //匿名内部类中通过currentThread获取实例System.out.println("t1线程中: "+thread.getName());});Thread t2 = new MyThread();t1.start();t1.join();t2.start();}
}

 

 

【博主推荐】 

对进程与线程的理解-CSDN博客icon-default.png?t=N7T8https://blog.csdn.net/zzzzzhxxx/article/details/136115808?spm=1001.2014.3001.5501【数据结构】二叉树的三种遍历(非递归讲解)-CSDN博客icon-default.png?t=N7T8https://blog.csdn.net/zzzzzhxxx/article/details/136044643?spm=1001.2014.3001.5501【LeetCode力扣】单调栈解决Next Greater Number(下一个更大值)问题-CSDN博客icon-default.png?t=N7T8https://blog.csdn.net/zzzzzhxxx/article/details/136030138?spm=1001.2014.3001.5501

如果觉得作者写的不错,求给博主一个大大的点赞支持一下,你们的支持是我更新的最大动力!

如果觉得作者写的不错,求给博主一个大大的点赞支持一下,你们的支持是我更新的最大动力!

如果觉得作者写的不错,求给博主一个大大的点赞支持一下,你们的支持是我更新的最大动力!

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

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

相关文章

Swift Combine 级联多个 UI 更新,包括网络请求 从入门到精通十六

Combine 系列 Swift Combine 从入门到精通一Swift Combine 发布者订阅者操作者 从入门到精通二Swift Combine 管道 从入门到精通三Swift Combine 发布者publisher的生命周期 从入门到精通四Swift Combine 操作符operations和Subjects发布者的生命周期 从入门到精通五Swift Com…

KMS知识管理系统:一文扫盲,体验为王,落地为皇

知识管理系统是学习型组织的必备,重要性不言而喻,但是往往在执行中不能落地,本位尝试做些KMS的扫盲。 一、KMS是什么 知识管理系统(英语:Knowledge management system)是一种用于管理和共享企业内部知识的…

如何为你的幻兽帕鲁服务器手动配置虚拟内存或Swap、Zram

其实非常简单,如果是Windows系统服务器的话,直接远程连接到服务器桌面。 连上之后,打开设置,找到“高级系统设置” 可以参考视频教程: 拒绝卡顿!幻兽帕鲁服务器内存优化攻略! 详细教程地址&…

RedisTemplate重写的一些模板

1.为什么要重写RedisTemplate 我们知道SpringBoot官方给出了2种实例化方式&#xff0c;分别是 RedisTemplate<Object,Object> 和 RedisTemplate<String,String> 这两种或多或少都有一些问题&#xff1b; 1.第一种对key所采用的序列化方式是JdkSerializationRedis…

常用文件命令

文章目录 文件命令文件内容查看catnlmoreless&#xff08;more的plus版&#xff09;headtailod 文件属性操作用户权限常见的权限chownchmodchgrpumask 隐藏属性常见的隐藏属性lsattrchattr 查找文件查看文件类型查找文件位置whichwhereislocatefind 文件操作&#xff08;复制、…

深度学习之梯度下降算法

梯度下降算法 梯度下降算法数学公式结果 梯度下降算法存在的问题随机梯度下降算法 梯度下降算法 数学公式 这里案例是用梯度下降算法&#xff0c;来计算 y w * x 先计算出梯度&#xff0c;再进行梯度的更新 import numpy as np import matplotlib.pyplot as pltx_data [1.0,…

2024 前端面试题(GPT回答 + 示例代码 + 解释)No.21 - No.40

本文题目来源于全网收集&#xff0c;答案来源于 ChatGPT 和 博主&#xff08;的小部分……&#xff09; 格式&#xff1a;题目 h3 回答 text 参考大佬博客补充 text 示例代码 code 解释 quote 补充 quote 上一篇链接&#xff1a;2024 前端面试题&#xff08;GPT回答 示例…

深度学习领域的最新前沿:2024年的关键突破与趋势

文章目录 导言01 深度学习的基本原理和算法1.1 神经网络&#xff08;Neural Networks&#xff09;1.2 前馈神经网络&#xff08;Feedforward Neural Network&#xff09;1.3 反向传播算法&#xff08;Backpropagation&#xff09;1.4 激活函数&#xff08;Activation Function&…

基于HTML5实现动态烟花秀效果(含音效和文字)实战

目录 前言 一、烟花秀效果功能分解 1、功能分解 2、界面分解 二、HTML功能实现 1、html界面设计 2、背景音乐和燃放触发 3、燃放控制 4、对联展示 5、脚本引用即文本展示 三、脚本调用及实现 1、烟花燃放 2、燃放响应 3、烟花canvas创建 4、燃放声音控制 5、实际…

五个编程原则:Rob Pike‘s 5 Rules of Programming

原文 https://users.ece.utexas.edu/~adnan/pike.html Rob Pike’s 5 Rules of Programming Rule 1. You can’t tell where a program is going to spend its time. Bottlenecks occur in surprising places, so don’t try to second guess and put in a speed hack until y…

用函数实现乘法口诀表

用函数实现乘法口诀表 实现一个函数&#xff0c;打印乘法口诀表&#xff0c;口诀表的行数和列数自己指定 如&#xff1a;输入9&#xff0c;输出99口诀表&#xff0c;输出12&#xff0c;输出1212的乘法口诀表。 思路&#xff1a; 1. 设计函数原型&#xff0c;不需要返回值&…

开源图形库Thor Vector Graphics:Paint类, Result、 CompositeMethod、 BlendMethod 枚举类型

0. 简介 开源图形库Thor Vector Graphics的Paint类是一个用于绘制图形的API类&#xff0c;提供了各种功能来控制绘制对象的外观和行为。所属头文件&#xff1a;thorvg.h 1. 成员函数与使用方法 Result rotate(float degree) noexcept&#xff1a;设置对象的旋转角度。 使用方…

idea基础配置

配置jre 【file】->【Project Structure】 设置SDK设置Language level 【Settings】->【Build,Execution,Deployment】->【Compiler】->【Java Compiler】设置Project bytecode version&#xff1a; 配置maven 【Settings】->【Build,Execution,Deployment】…

25届Javaer在2023的打怪升级之路

开头说一下基本信息&#xff1a;25届Java&#xff0c;二本&#xff0c;科班 刚刚结束第二段实习&#xff0c;回家过年准备春招&#xff0c;浅浅记录一下过去的一年 开始的原因&#xff1a; 虽然很不想回忆&#xff0c;但是走上Java的道路还是和前女友有些关系。 在今年年初…

搜索引擎枚举

我们可以利用Google 语法搜索子域名&#xff0c;例如要搜索百度旗下的子域名就可以 使用 “site:baidu.com” 语法&#xff0c;如图1-5所示。 Google 新闻 购物 地图 我料的31,400.000条结集(用B时0.17秒) 百度知道全球最大中文互动问答平台 hitps /izhidao baidu…

vue3 之 商城项目—结算模块

路由配置 chekout/index.vue <script setup> const checkInfo {} // 订单对象 const curAddress {} // 地址对象 </script> <template><div class"xtx-pay-checkout-page"><div class"container"><div class"w…

医院三基怎么搜题答案? #学习方法#学习方法#微信

在大学生的学习过程中&#xff0c;遇到难题和疑惑是常有的事情。然而&#xff0c;随着互联网的普及和技术的发展&#xff0c;搜题和学习软件成为了大学生们解决问题的利器。今天&#xff0c;我将向大家推荐几款备受大学生喜爱的搜题和学习软件&#xff0c;帮助我们更好地应对学…

分层钱包HD钱包

bc1 开头的通常指的是比特币&#xff08;Bitcoin&#xff09;的地址&#xff0c;这种格式遵循了比特币改进提案BIP 0173中定义的Bech32编码格式。Bech32地址也被称为"SegWit"地址&#xff0c;它们支持Segregated Witness功能&#xff0c;这是比特币网络为了提高区块链…

新冠:2022和2024两次新冠感染的对比

第一次 2022年底第一次放开管控&#xff0c;95%以上的人都感染了一次奥密克戎 症状 第一天&#xff1a;流涕&#xff0c;咽痛。 第二天&#xff1a;高烧40度&#xff0c;全身疼痛&#xff0c;动不了。没有胃口&#xff0c;头晕想吐。 吃了白加黑退烧药&#xff0c;清开灵颗粒…

python系统学习Day2

section3 python Foudamentals part one&#xff1a;data types and variables 数据类型&#xff1a;整数、浮点数、字符串、布尔值、空值 #整型&#xff0c;没有大小限制 >>>9 / 3 #3.0 >>>10 // 3 #3 地板除 >>>10 % 3 #1 取余#浮点型&#xff…