Java学习之线程

线程:

1. 单线程与多线程的运行

public class DemoThread {public static void main(String[] args) {/*TODO 构建多线程模式方式1: 自定义类继承 Tread类并重写其run方法在run方法中定义当前线程需要完成的任务逻辑*//*TODO 多线程的调用1.构建对象,并直接使用其run方法运行  => 单线程运行对于多线程的实现,不能直接使用run方法执行2.构建对象,使用start方法进行运行 => 多线程运行在底层会自动启动run方法,而不是在main主线程中运行run方法*/// run 单线程运行MyThread myThread = new MyThread();System.out.println("run方法没有启动...");myThread.run();System.out.println("run方法启动完成...");// start 多线程运行System.out.println("run方法没有启动...");myThread.start(); // 启动一个新的线程用于执行当前线程对象中的run方法System.out.println("run方法启动完成...");}
}// public class Thread 是一个具体的类 没有抽象方法
class MyThread extends Thread{@Overridepublic void run() {for (int i = 0; i < 100; i++) {try {Thread.sleep(100);} catch (InterruptedException e) {throw new RuntimeException(e);}System.out.println("这是创建的一个新线程,定义了其中的run方法...");}}
}

2. 获取线程信息

public class DemoThreadName {public static void main(String[] args) {/*TODO 获取线程名称① 获取主线程的名称② 自定义线程名称*/
//        获取主线程信息Thread thread = Thread.currentThread(); // 获取当前正在运行的线程对象System.out.println("当前线程名称:" + thread.getName());System.out.println("当前线程ID:" + thread.getId());System.out.println("当前线程状态:" + thread.getState());  // RUNNABLE 表示正在运行System.out.println("当前线程优先权:" + thread.getPriority());//        ThreadName threadName = new ThreadName();
//        threadName.start();  // 根据自定义类启动一个单独的线程运行run方法
//        threadName.start();  // TODO 注意:对于start方法 一个线程对象只能启动一次,否则会报错new ThreadName().start();  // 根据自定义类启动一个单独的线程运行run方法new ThreadName().start();  // TODO 每个线程对象通过start都会启动一个单独的线程,每个线程的名称都不一样// TODO 自定义线程名//利用构造器传入线程名new ThreadName("张三").start();new ThreadName("李四").start();ThreadName threadName = new ThreadName();//使用set方法传入线程名//public final synchronized void setName(String name)继承自父类的setName方法threadName.setName("王五");threadName.start();}static class ThreadName extends Thread {public ThreadName() {}//        public ThreadName(String name) {
//            this.setName(name);
//        }//super()调用父类的构造方法public ThreadName(String name) {super(name);}@Overridepublic void run() {while (true) {/*public static native Thread currentThread();currentThread()方法返回的是当前的Thread对象*///写法一:Thread thread = Thread.currentThread(); thread.getName()
//                Thread thread = Thread.currentThread();
//                System.out.println("当前线程名称:" + thread.getName());
//                System.out.println("当前线程ID:" + thread.getId());
//                System.out.println("当前线程状态:" + thread.getState());
//                System.out.println("这是自定义类中的run方法执行代码...");//写法二:this.getName()System.out.println("当前线程名称:" + this.getName());System.out.println("当前线程ID:" + this.getId());System.out.println("当前线程状态:" + this.getState());System.out.println("当前线程优先权:" + this.getPriority());System.out.println("这是自定义类中的run方法执行代码...");// TODO 注意:当前sleep由于需要异常处理,但是run方法是重写父类方法,不能在方法中添加throws 异常信息try {Thread.sleep(1000);} catch (InterruptedException e) {throw new RuntimeException(e);}}}}}

3. 线程优先权

public class DemoPriority {public static void main(String[] args) {/*TODO:优先权对线程执行的影响?① 设置优先权=> 优先级设置时需要在1-10之间  => 值越大优先级越高注意:对于优先级高的不一定先执行,只是获取到CPU的执行权可能性更高,执行具有一定的随机性*/PriorityThread thread1 = new PriorityThread("张三");//设置优先权thread1.setPriority(1);PriorityThread thread2 = new PriorityThread("李四");thread2.setPriority(2);PriorityThread thread3 = new PriorityThread("王五");thread3.setPriority(3);thread2.start();thread1.start();thread3.start();}static class PriorityThread extends Thread{public PriorityThread(String name) {super(name);}@Overridepublic void run() {for (int i = 0; i < 10; i++) {System.out.println("当前线程名称:" + this.getName());System.out.println("当前线程优先权:" + this.getPriority());}}}}

4. 线程控制1

public class DemoThreadControl01 {public static void main(String[] args) throws InterruptedException {/*TODO:线程控制方法① sleep 可以使当前的线程处于睡眠状态(具有倒计时的阻塞状态)sleep(1000)  => 每次执行当前线程睡眠1秒sleep(long millis, int nanos)  => 按毫秒+纳秒方式睡眠② join 当使用该方法时,其他线程必须等待当前线程执行完成才能继续执行③ yield 礼让线程,让当前线程退出CPU的执行权,重新竞争*/// join
//        ControlThread thread1 = new ControlThread("李白");
//        thread1.start();
        thread1.join();
//        ControlThread thread2 = new ControlThread("张三");
//        thread2.start();new ControlThread("张三").start();new ControlThread("李四").start();new ControlThread("王五").start();}static class ControlThread extends Thread {public ControlThread(String name) {super(name);}// sleep睡眠
//        @Override
//        public void run() {
//            for (int i = 0; i < 10; i++) {
//                if (i % 2 == 0) {
//                    System.out.println("当前线程名称:" + this.getName() + "遇到偶数开始睡眠....");
//                    try {
//                        Thread.sleep(1000);
//                    } catch (InterruptedException e) {
//                        throw new RuntimeException(e);
//                    }
//                }
//            }
//        }/*礼让线程*/@Overridepublic void run() {for (int i = 0; i < 10; i++) {if ("张三".equals(this.getName())) {System.out.println("遇到张三,开始礼让");yield();try {Thread.sleep(10);} catch (InterruptedException e) {throw new RuntimeException(e);}System.out.println(this.getName()+"正在执行...");} else if ("李四".equals(this.getName())) {System.out.println("遇到李四,开始礼让");yield();try {Thread.sleep(10);} catch (InterruptedException e) {throw new RuntimeException(e);}System.out.println(this.getName()+"正在执行...");} else {System.out.println(this.getName()+"正在执行...");}}}}}

5. 线程控制2

public class DemoThreadControl02 {public static void main(String[] args) throws InterruptedException {/*TODO:线程控制方法① sleep 可以使当前的线程处于睡眠状态(具有倒计时的阻塞状态)sleep(1000)  => 每次执行当前线程睡眠1秒sleep(long millis, int nanos)  => 按毫秒+纳秒方式睡眠② join 当使用该方法时,其他线程必须等待当前线程执行完成才能继续执行③ yield 礼让线程,让当前线程退出CPU的执行权,重新竞争④ setDaemon 设置当前线程为后台守护线程当线程设置为守护线程时,如果其他所有线程执行完成,那么当前线程也会被停止 => 放入后台执行⑤ 中断线程public final void stop()  强制停止  => 该方法已经过时了public void interrupt() 非强制执行,在当前线程在本次CPU执行时间片断执行完成后,再进行关闭操作会有异常提示信息*///setDaemon 设置后台守护线程
//        DaemonThread thread11 = new DaemonThread("张三");
//        DaemonThread thread12 = new DaemonThread("李四");
//        thread11.setDaemon(true);
//        thread11.start();
//        thread12.start();StopThread thread1 = new StopThread("邱六");StopThread thread2 = new StopThread("王五");thread1.start();thread2.start();}static class DaemonThread extends Thread {public DaemonThread(String name) {super(name);}@Overridepublic void run() {for (int i = 0; i < 10; i++) {System.out.println("当前线程:" + this.getName() + "是否为守护线程:" + this.isDaemon());if ("张三".equals(this.getName())) {try {Thread.sleep(1000);} catch (InterruptedException e) {throw new RuntimeException(e);}}System.out.println(this.getName() + "正在执行...");}}}static class StopThread extends Thread{public StopThread(String name) {super(name);}@Overridepublic void run() {for (int i = 0; i < 10; i++) {try {Thread.sleep(100);} catch (InterruptedException e) {throw new RuntimeException(e);}if ("邱六".equals(this.getName()) && i == 3){//强制终止
//                    this.stop();this.interrupt();//中断后会显示一个错误信息,但是并不影响程序的后续执行}System.out.println("当前线程:" + this.getName() + "当前i:" + i);}}}}

6. 多线程实现两人吃西瓜

import java.util.Random;public class DemoEatWatermelonCommentVar {public static int allNum =100;public static void main(String[] args) {
//        int allNum = 100; // TODO 如果将基本数据类型作为变量传入方法中,是直接将值赋予给方法中的变量;可以使用一个类来实现//该方法有缺陷,还未实现多个线程对同一个变量的互斥访问,后续会发解决方案AllWatermelon allWatermelon = new AllWatermelon();PeopleThread thread1 = new PeopleThread("张三", allWatermelon);PeopleThread thread2 = new PeopleThread("李四", allWatermelon);thread1.start();thread2.start();}static class AllWatermelon {private int allNum = 100;public void eatOne() {allNum -= 1;}public int getAllNum() {return allNum;}}static class PeopleThread extends Thread {int eatNum = 0;  // 每个线程都可以维护自身的变量Random random;AllWatermelon allWatermelon;public PeopleThread(String name, AllWatermelon allWatermelon) {super(name);random = new Random();this.allWatermelon = allWatermelon;}@Overridepublic void run() {while (true) {if (allWatermelon.getAllNum() > 0) {try {Thread.sleep(10);} catch (InterruptedException e) {throw new RuntimeException(e);}eatNum += 1;allWatermelon.eatOne();System.out.println("当前线程:" + this.getName() + "正在吃第" + eatNum + "块西瓜," + "当前剩余的总西瓜数:" + allWatermelon.getAllNum());if (eatNum % 13 == 0) {System.out.println("当前线程:" + this.getName() + "吃到一颗坏瓜... 吐了...");}}}}}
}

7. 通过实现 Runnable 接口来实现多线程模式

public class DemoRunnable {public static void main(String[] args) {/*TODO构建多线程模式方式2: 通过实现  Runnable 接口并重写其run方法该方式构建线程时,可以共用同一个Runnable接口的子实现类对象,这样就可以使用同一个对象中的变量好处:可以避免由于Java单继承带来的局限性。适合多个相同程序的代码去处理同一个资源的情况,把线程同程序的代码,数据有效分离,较好的体现了面向对象的设计思想*/MyRunnableThread myRunnableThread = new MyRunnableThread();new Thread(myRunnableThread,"线程1").start();new Thread(myRunnableThread,"线程2").start();}static class MyRunnableThread implements Runnable{int allNum = 100;@Overridepublic void run() {while (true){if (allNum <=0){break;}else {allNum -= 1;System.out.println("当前线程:"+Thread.currentThread().getName()+"allNum:"+allNum);}}}}
}

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

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

相关文章

5-在Linux上部署各类软件

1. MySQL 数据库安装部署 1.1 MySQL 5.7 版本在 CentOS 系统安装 注意&#xff1a;安装操作需要 root 权限 MySQL 的安装我们可以通过前面学习的 yum 命令进行。 1.1.1 安装 配置 yum 仓库 # 更新密钥 rpm --import https://repo.mysql.com/RPM-GPG-KEY-mysql-2022# 安装Mysql…

GraphGPT——图结构数据的新语言模型

在人工智能的浪潮中&#xff0c;图神经网络&#xff08;GNNs&#xff09;已经成为理解和分析图结构数据的强大工具。然而&#xff0c;GNNs在面对未标记数据时&#xff0c;其泛化能力往往受限。为了突破这一局限&#xff0c;研究者们提出了GraphGPT&#xff0c;这是一种为大语言…

重学java 29.经典接口

光阴似箭&#xff0c;我好像跟不上 —— 24.5.6 一、java.lang.Comparable 我们知道基本数据类型的数据(除boolean类型外)需要比较大小的话&#xff0c;直接使用比较运算符即可&#xff0c;但是引用数据类型是不能直接使用比较运算符来比较大小的。那么&#xff0c;如何解决这个…

(读书笔记-大模型) LLM Powered Autonomous Agents

目录 智能体系统的概念 规划组件 记忆组件 工具组件 案例研究 智能体系统的概念 在大语言模型&#xff08;LLM&#xff09;赋能的自主智能体系统中&#xff0c;LLM 充当了智能体的大脑&#xff0c;其三个关键组件分别如下&#xff1a; 首先是规划&#xff0c;它又分为以下…

如何查看MySQL是32位还是64位

如何查看mysql是多少位 - MySQL数据库 - 亿速云 (yisu.com) 进入MySQL的安装路径的bin目录下 C:\Program Files\MySQL\MySQL Server 8.0\bin>mysql -V mysql Ver 8.0.35 for Win64 on x86_64 (MySQL Community Server - GPL) 可以看出&#xff0c;我的是64位的。

代码随想录第51天 | 309.最佳买卖股票时机含冷冻期

309.最佳买卖股票时机含冷冻期 309. 买卖股票的最佳时机含冷冻期 - 力扣&#xff08;LeetCode&#xff09; 代码随想录 (programmercarl.com) 动态规划来决定最佳时机&#xff0c;这次有冷冻期&#xff01;| LeetCode&#xff1a;309.买卖股票的最佳时机含冷冻期_哔哩哔哩_bi…

状压dp 理论例题 详解

状压dp 四川2005年省选题&#xff1a;互不侵犯 首先我们可以分析一下&#xff0c;按照我们普通的思路&#xff0c;就是用搜索&#xff0c;枚举每一行的每一列&#xff0c;尝试放下一个国王&#xff0c;然后标记&#xff0c;继续枚举下一行 那么&#xff0c;我们的时间复杂度…

曼奇立德10节春季插画研修课

课程介绍 课程探讨了存在主义心理学的基本原理和方法。通过学习该课程&#xff0c;您将了解到存在主义的核心概念&#xff0c;如自由意志、责任感和意义寻求。您将学会运用存在主义理论和技巧来帮助个人面对挑战、追求自我实现&#xff0c;并寻找生活的意义。这门课程将启发您的…

从固定到可变:利用Deformable Attention提升模型能力

1. 引言 本文将深入探讨注意力机制的内部细节&#xff0c;这是了解机器如何选择和处理信息的基础。但这还不是全部&#xff0c;我们还将探讨可变形注意力的创新理念&#xff0c;这是一种将适应性放在首位的动态方法。 闲话少说&#xff0c;我们直接开始吧&#xff01; 2. 注…

pytest教程-36-钩子函数-pytest_collection_start

领取资料&#xff0c;咨询答疑&#xff0c;请➕wei: June__Go 上一小节我们学习了pytest_unconfigure钩子函数的使用方法&#xff0c;本小节我们讲解一下pytest_collection_start钩子函数的使用方法。 pytest_collection_start(session) 是一个 pytest 钩子函数&#xff0c;…

Python_4-对象序列化操作

文章目录 Python中对象数据持久化操作模块学习笔记marshal模块优点缺点使用示例保存数据到文件从文件读取数据 shelve模块优点缺点使用示例保存数据到文件从文件读取数据 总结 Python中对象数据持久化操作模块学习笔记 在Python中&#xff0c;数据持久化指的是将程序中的数据结…

秋招后端开发面试题 - JVM垃圾回收算法

目录 JVM垃圾回收算法前言面试题垃圾收集有哪些算法&#xff0c;各自的特点&#xff1f;说一下新生代的区域划分&#xff1f;Minor GC/Young GC、Major GC/Old GC、Mixed GC、Full GC&#xff1f;Minor GC/Young GC 什么时候触发&#xff1f;什么时候会触发 Full GC&#xff1f…

程序员做知识付费,做大纲时要注意那些点?

大纲的注意点 本节我们将讨论制作大纲时的要点。由于大家对大纲的制作已有一定了解&#xff0c;因此我们不会全面展开&#xff0c;而是聚焦于一些关键注意事项与大家分享。 条理性 最关键的一点是大纲必须具备清晰的条理性。如果大纲在逻辑结构上不够清晰&#xff0c;无论其他…

初二的孩子怎么沟通和教育,这个教育方法家长必看

初中生正值“身心聚变”时期&#xff0c;其中初二学生尤为明显&#xff0c;美国心理学家霍林沃斯称之为“心理性断乳期”。他们希望别人把他们看成“大人”&#xff0c;希望别人信任尊重他们。为此&#xff0c;家长应当积极配合学校工作&#xff0c;针对这种思想&#xff0c;采…

PHP基于B/S版 医院不良事件管理系统源码vscode+laravel8医院如何加强不良事件上报系统的管理 AEMS系统源码

PHP基于B/S版 医院不良事件管理系统源码vscodelaravel8医院如何加强不良事件上报系统的管理 AEMS系统源码 医院安全&#xff08;不良&#xff09;事件管理AEMS系统AEMS采用无责的、自愿的填报不良事件方式&#xff0c;有效地减轻医护人员的思想压力&#xff0c;实现以事件为主要…

快速编写测试用例(超详细~)

&#x1f345; 视频学习&#xff1a;文末有免费的配套视频可观看 &#x1f345; 关注公众号【互联网杂货铺】&#xff0c;回复 1 &#xff0c;免费获取软件测试全套资料&#xff0c;资料在手&#xff0c;涨薪更快 当你学会了如何设计测试用例之后&#xff0c;接下来便是开始用例…

设计模式设计原则

设计原则 前言&#xff1a;了解设计模式之前&#xff0c;一定要先理解什么设计原则&#xff0c;只有这样才能悟透设计模式的根本。 快速入口 工厂模式单例模式 1.何为设计&#xff1f; 按哪一种思路或者标准来实现的功能&#xff1b;功能相同&#xff0c;可以有不同设计的方…

黑马苍穹外卖

sky-pojo子模块内容 Entity&#xff1a;实体&#xff0c;通常和数据库中的表对应DTO&#xff1a;数据传输对象&#xff0c;通常用于程序中各层之间传递数据&#xff08;eg&#xff1a;前端返回的json数据&#xff0c;后端要接收&#xff0c;并且转化为java对象&#xff0c;此时…

QtConcurrent::run操作界面ui的注意事项(1)

先说结论&#xff1a;QtConcurrent::run启动的耗时处理函数&#xff0c;不允许处理ui界面对象&#xff0c;如控件&#xff0c;如进度条等等&#xff01; QtConcurrent::run非常好用&#xff0c;胜过QThead的两种方式&#xff08;run和moveToThread&#xff09;&#xff0c;例如…

拆炸弹(Lc1652)——模拟

你有一个炸弹需要拆除&#xff0c;时间紧迫&#xff01;你的情报员会给你一个长度为 n 的 循环 数组 code 以及一个密钥 k 。 为了获得正确的密码&#xff0c;你需要替换掉每一个数字。所有数字会 同时 被替换。 如果 k > 0 &#xff0c;将第 i 个数字用 接下来 k 个数字之…