JUC学习笔记

JUC学习笔记

1.线程和进程

1.1进程:一个程序的集合

一个进程往往包含多个线程,至少包含一个

java默认2个线程 GC main

1.2 线程:

Thread Runnable Callable

**java不能开启线程,调用底层C++ **

    public synchronized void start() {
   
        /**
         * This method is not invoked for the main method thread or "system"
         * group threads created/set up by the VM. Any new functionality added
         * to this method in the future may have to also be added to the VM.
         *
         * A zero status value corresponds to state "NEW".
         */
        if (threadStatus != 0)
            throw new IllegalThreadStateException();

        /* Notify the group that this thread is about to be started
         * so that it can be added to the group's list of threads
         * and the group's unstarted count can be decremented. */
        group.add(this);

        boolean started = false;
        try {
   
            start0();
            started = true;
        } finally {
   
            try {
   
                if (!started) {
   
                    group.threadStartFailed(this);
                }
            } catch (Throwable ignore) {
   
                /* do nothing. If start0 threw a Throwable then
                  it will be passed up the call stack */
            }
        }
    }

1.3 并发

多线程操作同一个资源。

  • CPU 只有一核,模拟出来多条线程,天下武功,唯快不破。那么我们就可以使用CPU快速交替,来模拟多线程。
  • 并发编程的本质:充分利用CPU的资源!

1.4并行

并行: 多个人一起行走

  • CPU多核,多个线程可以同时执行。 我们可以使用线程池!

获取cpu的核数

public class Test01 {
    public static void main(String[] args) {
        System.out.println(Runtime.getRuntime().availableProcessors());
    }
}

image-20210703115425667

1.5 线程的状态

源码

    public enum State {
     //新生
        NEW,

      // 运行
        RUNNABLE,

      // 阻塞
        BLOCKED,

  	// 等待 死死地等	
        WAITING,

   // 超时等待
        TIMED_WAITING,

      //终止
        TERMINATED;
    }

1.6 wait/sleep

1、来自不同的类

wait => Object

sleep => Thread

一般情况企业中使用休眠是:

TimeUnit.DAYS.sleep(1); //休眠1天
TimeUnit.SECONDS.sleep(1); //休眠1s

2、关于锁的释放

wait 会释放锁;

s

3、使用的范围是不同的

wait 必须在同步代码块中;

sleep 可以在任何地方睡;

4、是否需要捕获异常

wait是不需要捕获异常;

sleep必须要捕获异常;

2 Lock

2.1 不加synchronized

public class SaleTicketDemo01 {
   
    public static void main(String[] args) {
   
//        把资源类丢入线程
        Ticket ticket=new Ticket();

        /*
        * jdk1.7以前 匿名内部类
        *   new Thread(new Runnable() {
            @Override
            public void run() {

            }
        }).start();
        *
        * 1.8以后 lambda表达式 ()->{}
        * new Thread((参数)->{代码}).start();
        * */

//        new Thread(ticket::sale,"A").start();
//        new Thread(ticket::sale,"B").start();
//        new Thread(ticket::sale,"C").start();

        new Thread(()->{
   
            for (int i = 0; i < 40; i++) {
   
                ticket.sale();
            }
        },"A").start();
        new Thread(()->{
   
            for (int i = 0; i < 40; i++) {
   
                ticket.sale();
            }
        },"B").start();
        new Thread(()->{
   
            for (int i = 0; i < 40; i++) {
   
                ticket.sale();
            }
        },"C").start();

    }
}
class Ticket{
   
    private int number=30;
    public  void sale(){
   
        if(number>0){
   
            System.out.println(Thread.currentThread().getName()+"卖出了第"+(number--)+"张票,剩余"+number);

        }
    }
}

image-20210703133541937

2.2 解决多线程并发问题

2.2.1 加synchronized 关键字

synchronized 排队

public class SaleTicketDemo01 {
   
    public static void main(String[] args) {
   
//        把资源类丢入线程
        Ticket ticket=new Ticket();

        /*
        * jdk1.7以前 匿名内部类
        *   new Thread(new Runnable() {
            @Override
            public void run() {

            }
        }).start();
        *
        * 1.8以后 lambda表达式 ()->{}
        * new Thread((参数)->{代码}).start();
        * */

//        new Thread(ticket::sale,"A").start();
//        new Thread(ticket::sale,"B").start();
//        new Thread(ticket::sale,"C").start();

        new Thread(()->{
   
            for (int i = 0; i < 40; i++) {
   
                ticket.sale();
            }
        },"A").start();
        new Thread(()->{
   
            for (int i = 0; i < 40; i++) {
   
                ticket.sale();
            }
        },"B").start();
        new Thread(()->{
   
            for (int i = 0; i < 40; i++) {
   
                ticket.sale();
            }
        },"C").start();

    }
}
class Ticket{
   
    private int number=30;
    public synchronized void sale(){
   
        if(number>0){
   
            System.out.println(Thread.currentThread().getName()+"卖出了第"+(number--)+"张票,剩余"+number);

        }
    }
}

image-20210703133852915

2.2.2 Lock

公平锁: 十分公平,必须先来后到~;

非公平锁: 十分不公平,可以插队;(默认为非公平锁)

image-20210703143124198

package com.hu;

import java.util.concurrent.locks.Lock;
import java.util.concurrent.locks.ReentrantLock;

/**
 * @author HSL
 * QQ 1365343049
 * @CreateTime 2021/7/3 13:06
 **/
/*
* 线程是一个单独的资源类,没有任何附属的属性
* */
public class SaleTicketDemo02{
   
    public static void main(String[] args) {
   
//        把资源类丢入线程
        Ticket2 ticket=new Ticket2();

        new Thread(()->{
   
            for (int i = 0; i < 40; i++) {
   
                ticket.sale();
            }
        },"A").start();
        new Thread(()->{
   
            for (int i = 0; i < 40; i++) {
   
                ticket.sale();
            }
        },"B").start();
        new Thread(()->{
   
            for (int i = 0; i < 40; i++) {
   
                ticket.sale();
            }
        },"C").start();

    }
}

class Ticket2{
   
    private int number=30;
    Lock lock=new ReentrantLock();

    public   void sale(){
   
        lock.lock();
        try{
   
            if(number>0){
   
                System.out.println(Thread.currentThread().getName()+"卖出了第"+(number--)+"张票,剩余"+number);

            }
        }catch (Exception e) {
   
            e.printStackTrace();
        } finally {
   
            lock.unlock();
        }
        if(number>0){
   
            System.out.println(Thread.currentThread().getName()+"卖出了第"+(number--)+"张票,剩余"+number);

        }
    }
}
 

image-20210703143545211

2.2.3 Synchronized 与Lock 的区别

1、Synchronized 内置的Java关键字,Lock是一个Java类

2、Synchronized 无法判断获取锁的状态,Lock可以判断

3、Synchronized 会自动释放锁,lock必须要手动加锁和手动释放锁!可能会遇到死锁

4、Synchronized 线程1(获得锁->阻塞)、线程2(等待);lock就不一定会一直等待下去,lock会有一个trylock去尝试获取锁,不会造成长久的等待。

5、Synchronized 是可重入锁,不可以中断的,非公平的;Lock,可重入的,可以判断锁,可以自己设置公平锁和非公平锁;

6、Synchronized 适合锁少量的代码同步问题,Lock适合锁大量的同步代码;


锁是什么 如何判断锁得是谁

3 . 生产者和消费者的关系

package com.hu.productconsume;

/**
 * @author HSL
 * QQ 1365343049
 * @CreateTime 2021/7/3 14:52
 **/
/*
* 线程之间通信问题: 生产者消费者问题 等待唤醒 通知唤醒
* 线程交替进行 A B
*A num+1
*B num-1
* */
public class A {
   
    public static void main(String[] args) {
   
        Data data = new Data();

        new Thread(() -> {
   
            for (int i = 0; i < 10; i++) {
   
                try {
   
                    data.increment();
                } catch (InterruptedException e) {
   
                    e.printStackTrace();
                }
            }
        }, "A").start();
        new Thread(() -> {
   
            for (int i = 0; i < 10; i++) {
   
                try {
   
                    data.decrement();
                } catch (InterruptedException e) {
   
                    e.printStackTrace();
                }
            }
        }, "B").start();
    }
}

class Data {
   
    private int num = 0;

    // +1
    public synchronized void increment() throws InterruptedException {
   
        // 判断等待
        if (num != 0) {
   
            this.wait();
        }
        num++;
        System.out.println(Thread.currentThread().getName() + "=>" + num);
        // 通知其他线程 +1 执行完毕
        this.notifyAll();
    }

    // -1
    public synchronized void decrement() throws InterruptedException {
   
        // 判断等待
        if (num == 0) {
   
            this.wait();
        }
        num--;
        System.out.println(Thread.currentThread().getName() + "=>" + num);
        // 通知其他线程 -1 执行完毕
        this.notifyAll();
    }
}

image-20210703160528500

1)Synchronzied 版本

4. package com.marchsoft.juctest;

    /**

     * Description:
       *
     * @author jiaoqianjin
     * Date: 2020/8/10 22:33
       **/

    public class ConsumeAndProduct {
   
        public static void main(String[] args) {
   
            Data data = new Data();
            new Thread(() -> {
   
            for (int i = 0; i < 10; i++) {
   
                try {
   
                    data.increment();
                } catch (InterruptedException e) {
   
                    e.printStackTrace();
                }
            }
        }, "A").start();
        new Thread(() -> {
   
            for (int i = 0; i < 10; i++) {
   
                try {
   
                    data.decrement();
                } catch (InterruptedException e) {
   
                    e.printStackTrace();
                }
            }
        }, "B").start();
    }
   }

class Data {
   
    private int num = 0;// +1
public synchronized void increment() throws InterruptedException {
   
    // 判断等待
    if (num != 0) {
   
        this.wait();
    }
    num++;
    System.out.println(Thread.currentThread().getName() + "=>" + num);
    // 通知其他线程 +1 执行完毕
    this.notifyAll();
}

// -1
public synchronized void decrement() throws InterruptedException {
   
    // 判断等待
    if (num == 0) {
   
        this.wait();
    }
    num--;
    System.out.println(Thread.currentThread().getName() + "=>" + num);
    // 通知其他线程 -1 执行完毕
    this.notifyAll();
}

2)存在问题(虚假唤醒)

问题,如果有四个线程,会出现虚假唤醒

解决方式 ,if 改为while即可,防止虚假唤醒

结论:就是用if判断的话,唤醒后线程会从wait之后的代码开始运行,但是不会重新判断if条件,直接继续运行if代码块之后的代码,而如果使用while的话,也会从wait之后的代码运行,但是唤醒后会重新判断循环条件,如果不成立再执行while代码块之后的代码块,成立的话继续wait。

这也就是为什么用while而不用if的原因了,因为线程被唤醒后,执行开始的地方是wait之后

    package com.marchsoft.juctest;

/**

 * Description:
   *
 * @author jiaoqianjin
 * Date: 2020/8/10 22:33
   **/

public class ConsumeAndProduct {
   
    public static void main(String[] args) {
   
        Data data = new Data();
        new Thread(() -> {
   
        for (int i = 0; i < 10; i++) {
   
            try {
   
                data.increment();
            } catch (InterruptedException e) {
   
                e.printStackTrace();
            }
        }
    }, "A").start();
    new Thread(() -> {
   
        for (int i = 0; i < 10; i++) {
   
            try {
   
                data.decrement();
            } catch (InterruptedException e) {
   
                e.printStackTrace();
            }
        }
    }, "B").start();
    new Thread(() -> {
   
        for (int i = 0; i < 10; i++) {
   
            try {
   
                data.increment();
            } catch (InterruptedException e) {
   
                e.printStackTrace();
            }
        }
    }, "C").start();
    new Thread(() -> {
   
        for (int i = 0; i < 10; i++) {
   
            try {
   
                data.decrement();
            } catch (InterruptedException e) {
   
                e.printStackTrace();
            }
        }
    }, "D").start();
}
    }

class Data {
   
    private int num = 0;
    // +1
public synchronized void increment() throws InterruptedException {
   
    // 判断等待
    while (num != 0) {
   
        this.wait();
    }
    num++;
    System.out.println(Thread.currentThread().getName() + "=>" + num);
    // 通知其他线程 +1 执行完毕
    this.notifyAll();
}

// -1
public synchronized void decrement() throws InterruptedException {
   
    // 判断等待
    while (num == 0) {
   
        this.wait();
    }
    num--;
    System.out.println(Thread.currentThread().getName() + "=>" + num);
    // 通知其他线程 -1 执行完毕
    this.notifyAll();
}

3)Lock版

   package com.marchsoft.juctest;

import java.util.concurrent.locks.Condition;
import java.util.concurrent.locks.Lock;
import java.util.concurrent.locks.ReentrantLock;

/**

 * Description:
   *
 * @author jiaoqianjin
 * Date: 2020/8/11 9:48
   **/

public class LockCAP {
   
    public static void main(String[] args) {
   
        Data2 data = new Data2(); new Thread(() -> {
   
        for (int i = 0; i < 10; i++) {
   

            try {
   
                data.increment();
            } catch (InterruptedException e) {
   
                e.printStackTrace();
            }

        }
    }, "A").start();
    new Thread(() -> {
   
        for (int i = 0; i < 10; i++) {
   
            try {
   
                data.decrement();
            } catch (InterruptedException e) {
   
                e.printStackTrace();
            }
        }
    }, "B").start();
    new Thread(() -> {
   
        for (int i = 0; i < 10; i++) {
   
            try {
   
                data.increment();
            } catch (InterruptedException e) {
   
                e.printStackTrace();
            }
        }
    }, "C").start();
    new Thread(() -> {
   
        for (int i = 0; i < 10; i++) {
   
            try {
   
                data.decrement();
            } catch (InterruptedException e) {
   
                e.printStackTrace();
            }
        }
    }, "D").start();
}
    }

class Data2 {
   
    private int num = 0;
    Lock lock = new ReentrantLock();
    Condition condition = lock.newCondition();
    // +1
    public  void increment() throws InterruptedException {
   
        lock.lock();
        try {
   
            // 判断等待
            while (num != 0) {
   
                condition.await();
            }
            num++;
            System.out.println(Thread.currentThread().getName() + "=>" + num);
            // 通知其他线程 +1 执行完毕
            condition.signalAll();
        }finally {
   
            lock.unlock();
        }
        }

// -1
public  void decrement() throws InterruptedException {
   
    lock.lock();
    try {
   
        // 判断等待
        while (num == 0) {
   
            condition.await();
        }
        num--;
        System.out.println(Thread.currentThread().getName() + "=>" + num);
        // 通知其他线程 +1 执行完毕
        condition.signalAll();
    }finally {
   
        lock.unlock();
    }

}
 }

4)Condition的优势

精准的通知和唤醒的线程!

如果我们要指定通知的下一个进行顺序怎么办呢? 我们可以使用Condition来指定通知进程~

package com.marchsoft.juctest;

import java.util.concurrent.locks.Condition;
import java.util.concurrent.locks.Lock;
import java.util.concurrent.locks.ReentrantLock;

/**

 * Description:
 * A 执行完 调用B
 * B 执行完 调用C
 * C 执行完 调用A
   *
 * @author jiaoqianjin
 * Date: 2020/8/11 9:58
   **/

public class ConditionDemo {
   
    public static void main(String[] args) {
   
        Data3 data3 = new Data3();

        new Thread(() -> {
   
            for (int i = 0; i < 10; i++) {
   
                data3.printA();
            }
        },"A").start();
        new Thread(()</
  • 2
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 打赏
    打赏
  • 3
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论 3
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

爱上晨间阳光

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

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

余额充值