多线程学习笔记1

本文详细探讨了Java中线程安全问题的成因,如重排序现象,以及如何通过synchronized关键字实现线程同步以避免数据竞争。还介绍了线程中断、优先级、重入锁的概念及其在解决线程问题中的应用,包括死锁和静态同步的注意事项。
摘要由CSDN通过智能技术生成

ready = true;

}

}

Novisibility可能会持续循环下去,因为线程可能永远都看不到ready的值,也可以能会输出0,因为读线程读到了写入ready

的值,但是没有看到之后写入的number值,这种现象称为重排序(虽然我运行了一下,每次都能正常输出…)

线程不安全问题造成的原因有许多种,比如多个线程共享一个变量,如以下代码

public class Test1{

private ExpensiveObject instance = null;

public ExpensiveObject getInstance(){

if(instance == null){

instance = new ExpensiveObject();

return instance;

}

}

}

若有两个线程a和b同时执行getInstance,a看到instance为空,即将初始化一个类,此时b抢到执行权,同样判断instance为空,

初始化一个类,此时a抢到执行权,又会初始化一次instace,出现线程安全问题

可以通过同步代码块来支持原子性使上述方法变为线程安全的方法

public class Test1{

private ExpensiveObject instance = null;

public synchronized ExpensiveObject getInstance(){

if(instance == null){

instance = new ExpensiveObject();

return instance;

}

}

}

synchronized保证了每次只能有一个线程执行该关键字保护的代码块,相当于一种互斥体,但是会造成性能降低

线程的停止:

大多数停止一个线程的操作使用Thread.interrupt()方法,但是interrupt()方法的效果并不是马上停止循环,而是仅仅相当于在当

前线程中打了一个停止的标记,例如以下代码

public class MyThread extends Thread{

public void run(){

super.run();

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

System.out.println(“i=”+i);

}

}

public static void main(String[] args){

MyThread thread = new MyThread();

thread.start();

thread.interrupt();

}

}

虽然调用了interrupt()方法,但是线程没有停止

判断线程是否停止状态

1:this.interrupted(),用于测试当前线程是否已经中断

静态方法,当前线程指的是运行this.interrupted()方法的线程,线程的中断状态会被该方法清除,如以下代码:

MyThread thread = new MyThread();

thread.start();

Thread.sleep(1000);

Thread.currentThread().interrupt();

System.out.println(“是否停止1?=”+thread.interrupted());

System.out.println(“是否停止2?=”+thread.interrupted());

控制台会打印一个true一个false

2:this.isInterrupted(),测试线程是否已经中断

非静态方法,测试线程Thread对象是否已经是中断状态,但不清除状态

由此可以在线程中使用for语句来判断线程是否是停止状态,如果是停止状态,让后面的代码不运行

public class MyThread extends Thread {

public void run(){

super.run();

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

if(this.interrupted()){

System.out.println(“线程停止.退出”);

break;

}

System.out.println(“i=”+i);

}

System.out.println(“end”);

}

public static void main(String[] args) throws InterruptedException{

MyThread thread = new MyThread();

thread.start();

Thread.sleep(20);

thread.interrupt();

}

}

实际上线程并未停止,只是for循环终止,可以通过抛出异常来直接停止线程

public class MyThread extends Thread {

public void run(){

super.run();

try {

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

if(this.interrupted()){

throw new InterruptedException();

}

System.out.println(“i=”+i);

}

System.out.println(“end”);

}catch(InterruptedException e){

System.out.println(“线程已退出”);

}

}

public static void main(String[] args) throws InterruptedException{

MyThread thread = new MyThread();

thread.start();

Thread.sleep(20);

thread.interrupt();

}

}

线程的暂停:

1.suspend()和resume()方法(已作废)

public class MyThread extends Thread {

private long i = 0;

public long geti(){

return i;

}

public void seti(long i){

this.i = i;

}

public void run(){

while(true){

i++;

}

}

public static void main(String[] args){

try{

MyThread thread = new MyThread();

thread.start();

Thread.sleep(5000);

//第一段

thread.suspend();

System.out.println(“第一段=”+System.currentTimeMillis()+“i=”+thread.geti());

Thread.sleep(5000);

System.out.println(“第一段=”+System.currentTimeMillis()+“i=”+thread.geti());

//第二段

thread.resume();

Thread.sleep(5000);

//第三段

thread.suspend();

System.out.println(“第二段=”+System.currentTimeMillis()+“i=”+thread.geti());

Thread.sleep(5000);

System.out.println(“第二段=”+System.currentTimeMillis()+“i=”+thread.geti());

}catch(InterruptedException e){

e.printStackTrace();

}

}

}

缺点

使用不当,会造成公共的同步对象的独占,使得其他线程无法访问公共同步对象

2.yield方法

放弃当前的cpu资源,让给其他任务,但放弃时间不确定,

Thread.yield()

线程的优先级

线程优先级决定了谁得到的cpu资源较多,也就是cpu优先执行优先级较高的线程对象中的任务

方法:setPriority(int priorrity)

读取错误

如下程序不是线程安全的

public class Mutable {

private int value;

public void setvalue(int value){

this.value = value;

}

public int getvalue(){

return value;

}

}

原因是如果某个线程调用了setvalue,那么另一个正在调用getvalue的线程可能会看到更新后的value值,也可能看不到,应该进行同步

public class Mutable {

private int value;

public synchronized void setvalue(int value){

this.value = value;

}

public synchronized int getvalue(){

return value;

}

}

重入:

当某个线程请求一个由其他线程持有的锁时,发出请求的线程就会阻塞,然而由于内置锁的可重入,如果某个线程师徒获德

一个已经由它持有的锁,那么这个请求就会成功,重入意味着获取锁的操作粒度是线程而非调用,入下面程序

public class Test1{

public synchronized void dosomething(){

}

}

class Test2 extends Test1{

public synchronized void dosomething(){

super.dosomething();

}

}

子类改写了父类的代码,然后调用父类的方法,此时如果如果没有可重入的锁,会产生死锁的问题,原因是Test1和Test2的

dosomething方法都是synchronized的,每个dosomething方法被调用时都会获取Test1上的锁,然而如果锁时不可以重入的,那么在

调用super.dosomething将无法获得Test1上的锁,因为该锁已经被持有,线程将永远停顿

当一个线程执行的代码出现异常时,锁自动释放

同步不具有继承性

synchronized同步代码块

用Synchronized修饰方法时,如果一个线程需要执行的时间过长,会造成等待时间过长

可以使用同步代码块解决弊端,如下

public class Task {

private String getData1;

private String getData2;

public void doLongTimeTask(){

try{

System.out.println(“task begin”);

Thread.sleep(3000);

String privateGetData1 = “长时间处理任务后远程返回的值1 threadname=”+Thread.currentThread().getName();

String privateGetData2 = “长时间处理任务后远程返回的值1 threadname=”+Thread.currentThread().getName();

synchronized(this){

getData1 = privateGetData1;

getData2 = privateGetData2;

}

System.out.println(getData1);

System.out.println(getData2);

System.out.println(“task end”);

}catch(InterruptedException e){

e.printStackTrace();

}

}

}

仅仅同步有可能造成线程不安全的部分

如果一个类中有很多sunchronized方法,可以使用非this对象的锁,这样不会造成阻塞,但是必须保证多个线程持有同一个对象的锁

静态同步synchronized方法需要用.class对象的锁

在使用String作为锁时要注意常量池缓存的问题

synchronized同步方法的无限等待问题

public class Test1 implements Runnable{

public synchronized void run(){

while(true){

System.out.println(Thread.currentThread().getName()+“在运行”);

try {

Thread.sleep(1000);

} catch (InterruptedException e) {

// TODO Auto-generated catch block

e.printStackTrace();

}

}

}

public static void main(String[] args){

Test1 test = new Test1();

Thread task1 = new Thread(test);

Thread task2 = new Thread(test);

自我介绍一下,小编13年上海交大毕业,曾经在小公司待过,也去过华为、OPPO等大厂,18年进入阿里一直到现在。

深知大多数Python工程师,想要提升技能,往往是自己摸索成长或者是报班学习,但对于培训机构动则几千的学费,着实压力不小。自己不成体系的自学效果低效又漫长,而且极易碰到天花板技术停滞不前!

因此收集整理了一份《2024年Python开发全套学习资料》,初衷也很简单,就是希望能够帮助到想自学提升又不知道该从何学起的朋友,同时减轻大家的负担。

img

img

img

img

img

img

既有适合小白学习的零基础资料,也有适合3年以上经验的小伙伴深入学习提升的进阶课程,基本涵盖了95%以上前端开发知识点,真正体系化!

由于文件比较大,这里只是将部分目录大纲截图出来,每个节点里面都包含大厂面经、学习笔记、源码讲义、实战项目、讲解视频,并且后续会持续更新

如果你觉得这些内容对你有帮助,可以扫码获取!!!(备注Python)

168b93cf63939786134ca.png)

img

img

img

既有适合小白学习的零基础资料,也有适合3年以上经验的小伙伴深入学习提升的进阶课程,基本涵盖了95%以上前端开发知识点,真正体系化!

由于文件比较大,这里只是将部分目录大纲截图出来,每个节点里面都包含大厂面经、学习笔记、源码讲义、实战项目、讲解视频,并且后续会持续更新

如果你觉得这些内容对你有帮助,可以扫码获取!!!(备注Python)

img
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值