1.实现多线程

1.1 简单了解多线程【理解】

是指从软件或者硬件上实现多个线程并发执行的技术。
具有多线程能力的计算机因有硬件支持而能够在同一时间执行多个线程,提升性能。

1.2 并发和并行【理解】

  • 并行:在同一时刻,有多个指令在多个CPU上同时执行。(多核CPU下,每个核都可以调度运行线程,这时候线程是可以并行的)
  • 并发:在同一时刻,有多个指令在单个CPU上交替执行。(多个线程轮流使用CPU)

1.3 进程和线程【理解】

  • 进程:是正在运行的程序,当一个程序被运行,从磁盘加载这个程序的代码至内存,这时就开启了一个进程。
    独立性:进程是一个能独立运行的基本单位,同时也是系统分配资源和调度的独立单位
    动态性:进程的实质是程序的一次执行过程,进程是动态产生,动态消亡的
    并发性:任何进程都可以同其他进程一起并发执行
  • 线程:是进程中的单个顺序控制流,是一条执行路径
    单线程:一个进程如果只有一条执行路径,则称为单线程程序
    多线程:一个进程如果有多条执行路径,则称为多线程程序
  • 进程与线程的关系
    • 进程负责获取资源,线程负责执行任务
    • 一个程序至少一个进程,一个进程至少有一个线程
    • 进程间通信比较复杂,成本较高
    • 线程更轻量,线程切换成本相对进程较低
  • 引出若干问题
    • 什么是执行资源?
    • JAVA启动有没有进程产生?
    • JVM启动之后至少有几个线程?
      • 两个
      • main
      • GC
    • 多线程的作用?
      • 提高CPU利用率
    • JAVA支持多线程吗?

1.4 实现多线程方式一:继承Thread类【应用】

  • 方法介绍 | 方法名 | 说明 | | —- | —- | | void run() | 在线程开启后,此方法将被调用执行 | | void start() | 使此线程开始执行,Java虚拟机会调用run方法() |

  • 实现步骤

    • 定义一个类MyThread继承Thread类
    • 在MyThread类中重写run()方法
    • 创建MyThread类的对象
    • 启动线程
  • 代码演示 ```java public class MyThread extends Thread { @Override public void run() {
    1. for(int i=0; i<100; i++) {
    2. System.out.println(i);
    3. }
    } } public class MyThreadDemo { public static void main(String[] args) {
    1. MyThread my1 = new MyThread();
    2. MyThread my2 = new MyThread();

// my1.run(); // my2.run();

  1. //此线程开始执行; Java虚拟机调用此线程的run方法
  2. my1.start();
  3. my2.start();
  4. }

}

  1. <a name="5b27fed4"></a>
  2. ### 1.5 多线程实现方式-两个小问题
  3. - 为什么要重写run()方法?<br />因为run()是用来封装被线程执行的代码
  4. - run()方法和start()方法的区别?<br />run():封装线程执行的代码,直接调用,相当于普通方法的调用<br />start():启动线程;然后由JVM调用此线程的run()方法
  5. <a name="5b8fdda7"></a>
  6. ### 1.6 实现多线程方式二:实现Runnable接口【应用】
  7. - Thread构造方法
  8. | 方法名 | 说明 |
  9. | --- | --- |
  10. | Thread(Runnable target) | 分配一个新的Thread对象 |
  11. | Thread(Runnable target, String name) | 分配一个新的Thread对象 |
  12. - 实现步骤
  13. - 定义一个类MyRunnable实现Runnable接口
  14. - 在MyRunnable类中重写run()方法
  15. - 创建MyRunnable类的对象
  16. - 创建Thread类的对象,把MyRunnable对象作为构造方法的参数
  17. - 启动线程
  18. - 代码演示
  19. ```java
  20. /**
  21. * 实现多线程方式二:实现Runnable接口
  22. */
  23. public class MainClass {
  24. public static void main(String[] args) {
  25. MyRunnable myRunnable1 = new MyRunnable();
  26. Thread t1 = new Thread(myRunnable1);
  27. MyRunnable myRunnable2 = new MyRunnable();
  28. Thread t2 = new Thread(myRunnable2);
  29. t1.start();
  30. t2.start();
  31. }
  32. }
  33. class MyRunnable implements Runnable {
  34. @Override
  35. public void run() {
  36. for (int i = 0; i < 100; i++) {
  37. System.out.println("Runnable实现多线程" + i);
  38. }
  39. }
  40. }

1.7 实现多线程方式三: 实现Callable接口【应用】

  • 方法介绍 | 方法名 | 说明 | | —- | —- | | V call() | 计算结果,如果无法计算结果,则抛出一个异常 | | FutureTask(Callable callable) | 创建一个 FutureTask,一旦运行就执行给定的 Callable | | V get() | 如有必要,等待计算完成,然后获取其结果 |

  • 实现步骤

    • 定义一个类MyCallable实现Callable接口
    • 在MyCallable类中重写call()方法
    • 创建MyCallable类的对象
    • 创建Future的实现类FutureTask对象,把MyCallable对象作为构造方法的参数
    • 创建Thread类的对象,把FutureTask对象作为构造方法的参数
    • 启动线程
    • 再调用get方法,就可以获取线程结束之后的结果。
  • 代码演示

    1. public class MyCallable implements Callable<String> {
    2. @Override
    3. public String call() throws Exception {
    4. for (int i = 0; i < 100; i++) {
    5. System.out.println("跟女孩表白" + i);
    6. }
    7. //返回值就表示线程运行完毕之后的结果
    8. return "答应";
    9. }
    10. }
    11. public class Demo {
    12. public static void main(String[] args) throws ExecutionException, InterruptedException {
    13. //线程开启之后需要执行里面的call方法
    14. MyCallable mc = new MyCallable();
    15. //可以获取线程执行完毕之后的结果.也可以作为参数传递给Thread对象
    16. FutureTask<String> ft = new FutureTask<>(mc);
    17. //创建线程对象
    18. Thread t1 = new Thread(ft);
    19. //开启线程
    20. t1.start();
    21. String s = ft.get();
    22. System.out.println(s);
    23. }
    24. }

1.8 三种实现方式的对比

  • 实现Runnable、Callable接口
    • 好处: 扩展性强,实现该接口的同时还可以继承其他的类
    • 缺点: 编程相对复杂,不能直接使用Thread类中的方法
  • 继承Thread类
    • 好处: 编程比较简单,可以直接使用Thread类中的方法
    • 缺点: 可以扩展性较差,不能再继承其他的类

1.9 设置和获取线程名称【应用】

  • 方法介绍 | 方法名 | 说明 | | —- | —- | | void setName(String name) | 将此线程的名称更改为等于参数name | | String getName() | 返回此线程的名称 | | Thread currentThread() | 返回对当前正在执行的线程对象的引用 |

  • 代码演示

    1. public class MyThread extends Thread {
    2. public MyThread() {}
    3. public MyThread(String name) {
    4. super(name);
    5. }
    6. @Override
    7. public void run() {
    8. for (int i = 0; i < 100; i++) {
    9. System.out.println(getName()+":"+i);
    10. }
    11. }
    12. }
    13. public class MyThreadDemo {
    14. public static void main(String[] args) {
    15. MyThread my1 = new MyThread();
    16. MyThread my2 = new MyThread();
    17. //void setName(String name):将此线程的名称更改为等于参数 name
    18. my1.setName("高铁");
    19. my2.setName("飞机");
    20. //Thread(String name)
    21. MyThread my1 = new MyThread("高铁");
    22. MyThread my2 = new MyThread("飞机");
    23. my1.start();
    24. my2.start();
    25. //static Thread currentThread() 返回对当前正在执行的线程对象的引用
    26. //System.out.println(Thread.currentThread().getName());
    27. }
    28. }
  • 实现Runnable接口获取线程名称 ```java /**

    • 获取当前线程对象 */ public class MainClass { public static void main(String[] args) {
      1. Thread thread = new Thread(new MyRunnable());
      2. thread.start();
      } }

class MyRunnable implements Runnable {

  1. @Override
  2. public void run() {
  3. for (int i = 0; i < 10; i++) {
  4. //获取当前线程,得到线程名称
  5. System.out.println(Thread.currentThread().getName() + "-" + i);
  6. }
  7. }

}

  1. <a name="d6fbbfb5"></a>
  2. ### 1.10 线程休眠【应用】
  3. - 相关方法
  4. | 方法名 | 说明 |
  5. | --- | --- |
  6. | static void sleep(long millis) | 使当前正在执行的线程停留(暂停执行)指定的毫秒数 |
  7. - 代码演示
  8. ```java
  9. public class MyRunnable implements Runnable {
  10. @Override
  11. public void run() {
  12. for (int i = 0; i < 100; i++) {
  13. try {
  14. Thread.sleep(100);
  15. } catch (InterruptedException e) {
  16. e.printStackTrace();
  17. }
  18. System.out.println(Thread.currentThread().getName() + "---" + i);
  19. }
  20. }
  21. }
  22. public class Demo {
  23. public static void main(String[] args) throws InterruptedException {
  24. /*System.out.println("睡觉前");
  25. Thread.sleep(3000);
  26. System.out.println("睡醒了");*/
  27. MyRunnable mr = new MyRunnable();
  28. Thread t1 = new Thread(mr);
  29. Thread t2 = new Thread(mr);
  30. t1.start();
  31. t2.start();
  32. }
  33. }

1.11 线程优先级【应用】

  • 线程调度
    • 两种调度方式
      • 分时调度模型:所有线程轮流使用 CPU 的使用权,平均分配每个线程占用 CPU 的时间片
      • 抢占式调度模型:优先让优先级高的线程使用 CPU,如果线程的优先级相同,那么会随机选择一个,优先级高的线程获取的 CPU 时间片相对多一些
    • Java使用的是抢占式调度模型
    • 随机性
      假如计算机只有一个 CPU,那么 CPU 在某一个时刻只能执行一条指令,线程只有得到CPU时间片,也就是使用权,才可以执行指令。所以说多线程程序的执行是有随机性,因为谁抢到CPU的使用权是不一定的
  • 优先级相关方法 | 方法名 | 说明 | | —- | —- | | final int getPriority() | 返回此线程的优先级 | | final void setPriority(int newPriority) | 更改此线程的优先级线程默认优先级是5;线程优先级的范围是:1-10 |

  • 代码演示

    1. public class MyCallable implements Callable<String> {
    2. @Override
    3. public String call() throws Exception {
    4. for (int i = 0; i < 100; i++) {
    5. System.out.println(Thread.currentThread().getName() + "---" + i);
    6. }
    7. return "线程执行完毕了";
    8. }
    9. }
    10. public class Demo {
    11. public static void main(String[] args) {
    12. //优先级: 1 - 10 默认值:5
    13. MyCallable mc = new MyCallable();
    14. FutureTask<String> ft = new FutureTask<>(mc);
    15. Thread t1 = new Thread(ft);
    16. t1.setName("飞机");
    17. t1.setPriority(10);
    18. //System.out.println(t1.getPriority());//5
    19. t1.start();
    20. MyCallable mc2 = new MyCallable();
    21. FutureTask<String> ft2 = new FutureTask<>(mc2);
    22. Thread t2 = new Thread(ft2);
    23. t2.setName("坦克");
    24. t2.setPriority(1);
    25. //System.out.println(t2.getPriority());//5
    26. t2.start();
    27. }
    28. }

1.12 守护线程【应用】

  • 相关方法 | 方法名 | 说明 | | —- | —- | | void setDaemon(boolean on) | 将此线程标记为守护线程,当运行的线程都是守护线程时,Java虚拟机将退出 |

  • 代码演示

    1. public class MyThread1 extends Thread {
    2. @Override
    3. public void run() {
    4. for (int i = 0; i < 10; i++) {
    5. System.out.println(getName() + "---" + i);
    6. }
    7. }
    8. }
    9. public class MyThread2 extends Thread {
    10. @Override
    11. public void run() {
    12. for (int i = 0; i < 100; i++) {
    13. System.out.println(getName() + "---" + i);
    14. }
    15. }
    16. }
    17. public class Demo {
    18. public static void main(String[] args) {
    19. MyThread1 t1 = new MyThread1();
    20. MyThread2 t2 = new MyThread2();
    21. t1.setName("女神");
    22. t2.setName("备胎");
    23. //把第二个线程设置为守护线程
    24. //当普通线程执行完之后,那么守护线程也没有继续运行下去的必要了.
    25. t2.setDaemon(true);
    26. t1.start();
    27. t2.start();
    28. }
    29. }

2.线程同步

2.1 卖票【应用】

  • 案例需求
    某电影院目前正在上映国产大片,共有100张票,而它有3个窗口卖票,请设计一个程序模拟该电影院卖票
  • 实现步骤
    • 定义一个类SellTicket实现Runnable接口,里面定义一个成员变量:private int tickets = 100;
    • 在SellTicket类中重写run()方法实现卖票,代码步骤如下
    • 判断票数大于0,就卖票,并告知是哪个窗口卖的
    • 卖了票之后,总票数要减1
    • 票卖没了,线程停止
    • 定义一个测试类SellTicketDemo,里面有main方法,代码步骤如下
    • 创建SellTicket类的对象
    • 创建三个Thread类的对象,把SellTicket对象作为构造方法的参数,并给出对应的窗口名称
    • 启动线程
  • 代码实现

    1. public class SellTicket implements Runnable {
    2. private int tickets = 100;
    3. //在SellTicket类中重写run()方法实现卖票,代码步骤如下
    4. @Override
    5. public void run() {
    6. while (true) {
    7. if(ticket <= 0){
    8. //卖完了
    9. break;
    10. }else{
    11. try {
    12. Thread.sleep(100);
    13. } catch (InterruptedException e) {
    14. e.printStackTrace();
    15. }
    16. ticket--;
    17. System.out.println(Thread.currentThread().getName() + "在卖票,还剩下" + ticket + "张票");
    18. }
    19. }
    20. }
    21. }
    22. public class SellTicketDemo {
    23. public static void main(String[] args) {
    24. //创建SellTicket类的对象
    25. SellTicket st = new SellTicket();
    26. //创建三个Thread类的对象,把SellTicket对象作为构造方法的参数,并给出对应的窗口名称
    27. Thread t1 = new Thread(st,"窗口1");
    28. Thread t2 = new Thread(st,"窗口2");
    29. Thread t3 = new Thread(st,"窗口3");
    30. //启动线程
    31. t1.start();
    32. t2.start();
    33. t3.start();
    34. }
    35. }

2.2 卖票案例的问题【理解】

  • 卖票出现了问题
    • 相同的票出现了多次
    • 出现了负数的票
  • 问题产生原因
    线程执行的随机性导致的

2.3 数据安全问题-同步代码块【应用】

  • 安全问题出现的条件
    • 是多线程环境
    • 有共享数据
    • 有多条语句操作共享数据
  • 如何解决多线程安全问题呢?
    • 基本思想:让程序没有安全问题的环境
  • 怎么实现呢?
    • 把多条语句操作共享数据的代码给锁起来,让任意时刻只能有一个线程执行即可
    • Java提供了同步代码块的方式来解决
  • 同步代码块格式:

    1. synchronized(任意对象) {
    2. 多条语句操作共享数据的代码
    3. }
  • synchronized(任意对象):就相当于给代码加锁了,任意对象就可以看成是一把锁

  • 同步的好处和弊端
    • 好处:解决了多线程的数据安全问题
    • 弊端:当线程很多时,因为每个线程都会去判断同步上的锁,这是很耗费资源的,无形中会降低程序的运行效率
  • 代码演示 ```java public class SellTicket implements Runnable { private int tickets = 100; private Object obj = new Object();

    @Override public void run() {

    1. while (true) {
    2. synchronized (obj) { // 对可能有安全问题的代码加锁,多个线程必须使用同一把锁
    3. //t1进来后,就会把这段代码给锁起来
    4. if (tickets > 0) {
    5. try {
    6. Thread.sleep(100);
    7. //t1休息100毫秒
    8. } catch (InterruptedException e) {
    9. e.printStackTrace();
    10. }
    11. //窗口1正在出售第100张票
    12. System.out.println(Thread.currentThread().getName() + "正在出售第" + tickets + "张票");
    13. tickets--; //tickets = 99;
    14. }
    15. }
    16. //t1出来了,这段代码的锁就被释放了
    17. }

    } }

public class SellTicketDemo { public static void main(String[] args) { SellTicket st = new SellTicket();

  1. Thread t1 = new Thread(st, "窗口1");
  2. Thread t2 = new Thread(st, "窗口2");
  3. Thread t3 = new Thread(st, "窗口3");
  4. t1.start();
  5. t2.start();
  6. t3.start();
  7. }

}

  1. <a name="75fd4c8d"></a>
  2. ### 2.4 数据安全问题-锁对象唯一 【应用】
  3. - 锁对象的注意事项
  4. - 锁对象可以是任意对象
  5. - 多个线程要想保证安全,必须使用同一把锁对象
  6. - 示例代码
  7. ```java
  8. /**
  9. * 锁唯一
  10. */
  11. public class MainClass {
  12. public static void main(String[] args) {
  13. MyThread ticket1 = new MyThread();
  14. MyThread ticket2 = new MyThread();
  15. ticket1.setName("窗口1");
  16. ticket2.setName("窗口2");
  17. ticket1.start();
  18. ticket2.start();
  19. }
  20. }
  21. class MyThread extends Thread {
  22. private static int ticketCount = 100;
  23. private static Object lock = new Object();
  24. @Override
  25. public void run() {
  26. while (true) {
  27. synchronized (lock) {
  28. if (ticketCount > 0) {
  29. ticketCount--;
  30. try {
  31. Thread.sleep(100);
  32. } catch (InterruptedException e) {
  33. e.printStackTrace();
  34. }
  35. System.out.println(getName() + "在卖票,还剩下" + ticketCount + "张票");
  36. }
  37. }
  38. }
  39. }
  40. }

2.5 同步方法解决数据安全问题【应用】

  • 同步方法的格式
    同步方法:就是把synchronized关键字加到方法上

    1. 修饰符 synchronized 返回值类型 方法名(方法参数) {
    2. 方法体;
    3. }
  • 同步方法的锁对象是什么呢?
    this

  • 静态同步方法
    同步静态方法:就是把synchronized关键字加到静态方法上

    1. 修饰符 static synchronized 返回值类型 方法名(方法参数) {
    2. 方法体;
    3. }
  • 同步静态方法的锁对象是什么呢?
    类名.class

  • 代码演示 ```java public class MyRunnable implements Runnable { private static int ticketCount = 100;

    @Override public void run() {

    1. while(true){
    2. if("窗口一".equals(Thread.currentThread().getName())){
    3. //同步方法
    4. boolean result = synchronizedMthod();
    5. if(result){
    6. break;
    7. }
    8. }
    9. if("窗口二".equals(Thread.currentThread().getName())){
    10. //同步代码块
    11. synchronized (MyRunnable.class){
    12. if(ticketCount == 0){
    13. break;
    14. }else{
    15. try {
    16. Thread.sleep(10);
    17. } catch (InterruptedException e) {
    18. e.printStackTrace();
    19. }
    20. ticketCount--;
    21. System.out.println(Thread.currentThread().getName() + "在卖票,还剩下" + ticketCount + "张票");
    22. }
    23. }
    24. }
    25. }

    }

    private static synchronized boolean synchronizedMthod() {

    1. if(ticketCount == 0){
    2. return true;
    3. }else{
    4. try {
    5. Thread.sleep(10);
    6. } catch (InterruptedException e) {
    7. e.printStackTrace();
    8. }
    9. ticketCount--;
    10. System.out.println(Thread.currentThread().getName() + "在卖票,还剩下" + ticketCount + "张票");
    11. return false;
    12. }

    } }

public class Demo { public static void main(String[] args) { MyRunnable mr = new MyRunnable();
Thread t1 = new Thread(mr); Thread t2 = new Thread(mr);

  1. t1.setName("窗口一");
  2. t2.setName("窗口二");
  3. t1.start();
  4. t2.start();

} }

  1. <a name="4a968cac"></a>
  2. ### 2.6 Lock锁【应用】
  3. - 虽然我们可以理解同步代码块和同步方法的锁对象问题,但是我们并没有直接看到在哪里加上了锁,在哪里释放了锁,为了更清晰的表达如何加锁和释放锁,JDK5以后提供了一个新的锁对象Lock
  4. - Lock实现提供比使用synchronized方法和语句可以获得更广泛的锁定操作
  5. - Lock是接口不能直接实例化,这里采用它的实现类ReentrantLock来实例化
  6. - ReentrantLock构造方法
  7. | 方法名 | 说明 |
  8. | --- | --- |
  9. | ReentrantLock() | 创建一个ReentrantLock的实例 |
  10. - 加锁解锁方法
  11. | 方法名 | 说明 |
  12. | --- | --- |
  13. | void lock() | 获得锁 |
  14. | void unlock() | 释放锁 |
  15. - 代码演示
  16. ```java
  17. public class Ticket implements Runnable {
  18. //票的数量
  19. private int ticket = 100;
  20. private Object obj = new Object();
  21. private ReentrantLock lock = new ReentrantLock();
  22. @Override
  23. public void run() {
  24. while (true) {
  25. //synchronized (obj){//多个线程必须使用同一把锁.
  26. try {
  27. lock.lock();
  28. if (ticket <= 0) {
  29. //卖完了
  30. break;
  31. } else {
  32. Thread.sleep(100);
  33. ticket--;
  34. System.out.println(Thread.currentThread().getName() + "在卖票,还剩下" + ticket + "张票");
  35. }
  36. } catch (InterruptedException e) {
  37. e.printStackTrace();
  38. } finally {
  39. lock.unlock();
  40. }
  41. // }
  42. }
  43. }
  44. }
  45. public class Demo {
  46. public static void main(String[] args) {
  47. Ticket ticket = new Ticket();
  48. Thread t1 = new Thread(ticket);
  49. Thread t2 = new Thread(ticket);
  50. Thread t3 = new Thread(ticket);
  51. t1.setName("窗口一");
  52. t2.setName("窗口二");
  53. t3.setName("窗口三");
  54. t1.start();
  55. t2.start();
  56. t3.start();
  57. }
  58. }

2.7 死锁【理解】

  • 概述
    线程死锁是指由于两个或者多个线程互相持有对方所需要的资源,导致这些线程处于等待状态,无法前往执行
  • 什么情况下会产生死锁
    1. 资源有限
    2. 同步嵌套
  • 代码演示

    1. public class Demo {
    2. public static void main(String[] args) {
    3. Object objA = new Object();
    4. Object objB = new Object();
    5. new Thread(()->{
    6. while(true){
    7. synchronized (objA){
    8. //线程一
    9. synchronized (objB){
    10. System.out.println("小康同学正在走路");
    11. }
    12. }
    13. }
    14. }).start();
    15. new Thread(()->{
    16. while(true){
    17. synchronized (objB){
    18. //线程二
    19. synchronized (objA){
    20. System.out.println("小薇同学正在走路");
    21. }
    22. }
    23. }
    24. }).start();
    25. }
    26. }

3.生产者消费者

3.1 生产者和消费者模式概述【应用】

  • 概述
    生产者消费者模式是一个十分经典的多线程协作的模式,弄懂生产者消费者问题能够让我们对多线程编程的理解更加深刻。
    所谓生产者消费者问题,实际上主要是包含了两类线程:
    一类是生产者线程用于生产数据
    一类是消费者线程用于消费数据
    为了解耦生产者和消费者的关系,通常会采用共享的数据区域,就像是一个仓库
    生产者生产数据之后直接放置在共享数据区中,并不需要关心消费者的行为
    消费者只需要从共享数据区中去获取数据,并不需要关心生产者的行为
  • Object类的等待和唤醒方法 | 方法名 | 说明 | | —- | —- | | void wait() | 导致当前线程等待,直到另一个线程调用该对象的 notify()方法或 notifyAll()方法 | | void notify() | 唤醒正在等待对象监视器的单个线程 | | void notifyAll() | 唤醒正在等待对象监视器的所有线程 |

3.2 生产者和消费者案例【应用】

  • 案例需求
    • 桌子类(Desk):定义表示包子数量的变量,定义锁对象变量,定义标记桌子上有无包子的变量
    • 生产者类(Cooker):继承Thread类,重写run()方法,设置线程任务
      1.判断是否有包子,决定当前线程是否执行
      2.如果有包子,就进入等待状态,如果没有包子,继续执行,生产包子
      3.生产包子之后,更新桌子上包子状态,唤醒消费者消费包子
    • 消费者类(Foodie):继承Thread类,重写run()方法,设置线程任务
      1.判断是否有包子,决定当前线程是否执行
      2.如果没有包子,就进入等待状态,如果有包子,就消费包子
      3.消费包子后,更新桌子上包子状态,唤醒生产者生产包子
    • 测试类(Demo):里面有main方法,main方法中的代码步骤如下
      创建生产者线程和消费者线程对象
      分别开启两个线程
  • 代码实现 ```java public class Desk {

    //定义一个标记 //true 就表示桌子上有汉堡包的,此时允许吃货执行 //false 就表示桌子上没有汉堡包的,此时允许厨师执行 public static boolean flag = false;

    //汉堡包的总数量 public static int count = 10;

    //锁对象 public static final Object lock = new Object(); }

public class Cooker extends Thread { // 生产者步骤: // 1,判断桌子上是否有汉堡包 // 如果有就等待,如果没有才生产。 // 2,把汉堡包放在桌子上。 // 3,叫醒等待的消费者开吃。 @Override public void run() { while(true){ synchronized (Desk.lock){ if(Desk.count == 0){ break; }else{ if(!Desk.flag){ //生产 System.out.println(“厨师正在生产汉堡包”); Desk.flag = true; Desk.lock.notifyAll(); }else{ try { Desk.lock.wait(); } catch (InterruptedException e) { e.printStackTrace(); } } } } } } }

public class Foodie extends Thread { @Override public void run() { // 1,判断桌子上是否有汉堡包。 // 2,如果没有就等待。 // 3,如果有就开吃 // 4,吃完之后,桌子上的汉堡包就没有了 // 叫醒等待的生产者继续生产 // 汉堡包的总数量减一

  1. //套路:
  2. //1. while(true)死循环
  3. //2. synchronized 锁,锁对象要唯一
  4. //3. 判断,共享数据是否结束. 结束
  5. //4. 判断,共享数据是否结束. 没有结束
  6. while(true){
  7. synchronized (Desk.lock){
  8. if(Desk.count == 0){
  9. break;
  10. }else{
  11. if(Desk.flag){
  12. //有
  13. System.out.println("吃货在吃汉堡包");
  14. Desk.flag = false;
  15. Desk.lock.notifyAll();
  16. Desk.count--;
  17. }else{
  18. //没有就等待
  19. //使用什么对象当做锁,那么就必须用这个对象去调用等待和唤醒的方法.
  20. try {
  21. Desk.lock.wait();
  22. } catch (InterruptedException e) {
  23. e.printStackTrace();
  24. }
  25. }
  26. }
  27. }
  28. }
  29. }

}

public class Demo { public static void main(String[] args) { /消费者步骤: 1,判断桌子上是否有汉堡包。 2,如果没有就等待。 3,如果有就开吃 4,吃完之后,桌子上的汉堡包就没有了 叫醒等待的生产者继续生产 汉堡包的总数量减一/

  1. /*生产者步骤:
  2. 1,判断桌子上是否有汉堡包
  3. 如果有就等待,如果没有才生产。
  4. 2,把汉堡包放在桌子上。
  5. 3,叫醒等待的消费者开吃。*/
  6. Foodie f = new Foodie();
  7. Cooker c = new Cooker();
  8. f.start();
  9. c.start();
  10. }

}

  1. <a name="02aa8418"></a>
  2. ### 3.3 生产者和消费者案例优化【应用】
  3. - 需求
  4. - 将Desk类中的变量,采用面向对象的方式封装起来
  5. - 生产者和消费者类中构造方法接收Desk类对象,之后在run方法中进行使用
  6. - 创建生产者和消费者线程对象,构造方法中传入Desk类对象
  7. - 开启两个线程
  8. - 代码实现
  9. ```java
  10. public class Desk {
  11. //定义一个标记
  12. //true 就表示桌子上有汉堡包的,此时允许吃货执行
  13. //false 就表示桌子上没有汉堡包的,此时允许厨师执行
  14. //public static boolean flag = false;
  15. private boolean flag;
  16. //汉堡包的总数量
  17. //public static int count = 10;
  18. //以后我们在使用这种必须有默认值的变量
  19. // private int count = 10;
  20. private int count;
  21. //锁对象
  22. //public static final Object lock = new Object();
  23. private final Object lock = new Object();
  24. public Desk() {
  25. this(false,10); // 在空参内部调用带参,对成员变量进行赋值,之后就可以直接使用成员变量了
  26. }
  27. public Desk(boolean flag, int count) {
  28. this.flag = flag;
  29. this.count = count;
  30. }
  31. public boolean isFlag() {
  32. return flag;
  33. }
  34. public void setFlag(boolean flag) {
  35. this.flag = flag;
  36. }
  37. public int getCount() {
  38. return count;
  39. }
  40. public void setCount(int count) {
  41. this.count = count;
  42. }
  43. public Object getLock() {
  44. return lock;
  45. }
  46. @Override
  47. public String toString() {
  48. return "Desk{" +
  49. "flag=" + flag +
  50. ", count=" + count +
  51. ", lock=" + lock +
  52. '}';
  53. }
  54. }
  55. public class Cooker extends Thread {
  56. private Desk desk;
  57. public Cooker(Desk desk) {
  58. this.desk = desk;
  59. }
  60. // 生产者步骤:
  61. // 1,判断桌子上是否有汉堡包
  62. // 如果有就等待,如果没有才生产。
  63. // 2,把汉堡包放在桌子上。
  64. // 3,叫醒等待的消费者开吃。
  65. @Override
  66. public void run() {
  67. while(true){
  68. synchronized (desk.getLock()){
  69. if(desk.getCount() == 0){
  70. break;
  71. }else{
  72. //System.out.println("验证一下是否执行了");
  73. if(!desk.isFlag()){
  74. //生产
  75. System.out.println("厨师正在生产汉堡包");
  76. desk.setFlag(true);
  77. desk.getLock().notifyAll();
  78. }else{
  79. try {
  80. desk.getLock().wait();
  81. } catch (InterruptedException e) {
  82. e.printStackTrace();
  83. }
  84. }
  85. }
  86. }
  87. }
  88. }
  89. }
  90. public class Foodie extends Thread {
  91. private Desk desk;
  92. public Foodie(Desk desk) {
  93. this.desk = desk;
  94. }
  95. @Override
  96. public void run() {
  97. // 1,判断桌子上是否有汉堡包。
  98. // 2,如果没有就等待。
  99. // 3,如果有就开吃
  100. // 4,吃完之后,桌子上的汉堡包就没有了
  101. // 叫醒等待的生产者继续生产
  102. // 汉堡包的总数量减一
  103. //套路:
  104. //1. while(true)死循环
  105. //2. synchronized 锁,锁对象要唯一
  106. //3. 判断,共享数据是否结束. 结束
  107. //4. 判断,共享数据是否结束. 没有结束
  108. while(true){
  109. synchronized (desk.getLock()){
  110. if(desk.getCount() == 0){
  111. break;
  112. }else{
  113. //System.out.println("验证一下是否执行了");
  114. if(desk.isFlag()){
  115. //有
  116. System.out.println("吃货在吃汉堡包");
  117. desk.setFlag(false);
  118. desk.getLock().notifyAll();
  119. desk.setCount(desk.getCount() - 1);
  120. }else{
  121. //没有就等待
  122. //使用什么对象当做锁,那么就必须用这个对象去调用等待和唤醒的方法.
  123. try {
  124. desk.getLock().wait();
  125. } catch (InterruptedException e) {
  126. e.printStackTrace();
  127. }
  128. }
  129. }
  130. }
  131. }
  132. }
  133. }
  134. public class Demo {
  135. public static void main(String[] args) {
  136. /*消费者步骤:
  137. 1,判断桌子上是否有汉堡包。
  138. 2,如果没有就等待。
  139. 3,如果有就开吃
  140. 4,吃完之后,桌子上的汉堡包就没有了
  141. 叫醒等待的生产者继续生产
  142. 汉堡包的总数量减一*/
  143. /*生产者步骤:
  144. 1,判断桌子上是否有汉堡包
  145. 如果有就等待,如果没有才生产。
  146. 2,把汉堡包放在桌子上。
  147. 3,叫醒等待的消费者开吃。*/
  148. Desk desk = new Desk();
  149. Foodie f = new Foodie(desk);
  150. Cooker c = new Cooker(desk);
  151. f.start();
  152. c.start();
  153. }
  154. }

3.4 阻塞队列基本使用【理解】

  • 阻塞队列继承结构
    06_阻塞队列继承结构.png
  • 常见BlockingQueue:
    ArrayBlockingQueue: 底层是数组,有界
    LinkedBlockingQueue: 底层是链表,无界.但不是真正的无界,最大为int的最大值
  • BlockingQueue的核心方法:
    put(anObject): 将参数放入队列,如果放不进去会阻塞
    take(): 取出第一个数据,取不到会阻塞
  • 代码示例

    1. public class Demo02 {
    2. public static void main(String[] args) throws Exception {
    3. // 创建阻塞队列的对象,容量为 1
    4. ArrayBlockingQueue<String> arrayBlockingQueue = new ArrayBlockingQueue<>(1);
    5. // 存储元素
    6. arrayBlockingQueue.put("汉堡包");
    7. arrayBlockingQueue.put("汉堡包");
    8. // 取元素
    9. System.out.println(arrayBlockingQueue.take());
    10. System.out.println(arrayBlockingQueue.take()); // 取不到会阻塞
    11. System.out.println("程序结束了");
    12. }
    13. }

3.5 阻塞队列实现等待唤醒机制【理解】

  • 案例需求
    • 生产者类(Cooker):继承Thread类,重写run()方法,设置线程任务
      1.构造方法中接收一个阻塞队列对象
      2.在run方法中循环向阻塞队列中添加包子
      3.打印添加结果
    • 消费者类(Foodie):实现Runnable接口,重写run()方法,设置线程任务
      1.构造方法中接收一个阻塞队列对象
      2.在run方法中循环获取阻塞队列中的包子
      3.打印获取结果
    • 测试类(Demo):里面有main方法,main方法中的代码步骤如下
      创建阻塞队列对象
      创建生产者线程和消费者线程对象,构造方法中传入阻塞队列对象
      分别开启两个线程
  • 代码实现 ```java public class Cooker extends Thread {

    private ArrayBlockingQueue bd;

    public Cooker(ArrayBlockingQueue bd) {

    1. this.bd = bd;

    } // 生产者步骤: // 1,判断桌子上是否有汉堡包 // 如果有就等待,如果没有才生产。 // 2,把汉堡包放在桌子上。 // 3,叫醒等待的消费者开吃。

    @Override public void run() {

    1. while (true) {
    2. try {
    3. bd.put("汉堡包");
    4. System.out.println("厨师放入一个汉堡包");
    5. } catch (InterruptedException e) {
    6. e.printStackTrace();
    7. }
    8. }

    } }

public class Foodie extends Thread { private ArrayBlockingQueue bd;

  1. public Foodie(ArrayBlockingQueue<String> bd) {
  2. this.bd = bd;
  3. }
  4. @Override
  5. public void run() {

// 1,判断桌子上是否有汉堡包。 // 2,如果没有就等待。 // 3,如果有就开吃 // 4,吃完之后,桌子上的汉堡包就没有了 // 叫醒等待的生产者继续生产 // 汉堡包的总数量减一

  1. //套路:
  2. //1. while(true)死循环
  3. //2. synchronized 锁,锁对象要唯一
  4. //3. 判断,共享数据是否结束. 结束
  5. //4. 判断,共享数据是否结束. 没有结束
  6. while (true) {
  7. try {
  8. String take = bd.take();
  9. System.out.println("吃货将" + take + "拿出来吃了");
  10. } catch (InterruptedException e) {
  11. e.printStackTrace();
  12. }
  13. }
  14. }

}

public class Demo { public static void main(String[] args) { ArrayBlockingQueue bd = new ArrayBlockingQueue<>(1);

  1. Foodie f = new Foodie(bd);
  2. Cooker c = new Cooker(bd);
  3. f.start();
  4. c.start();
  5. }

}

  1. <a name="d5ae024b"></a>
  2. ## 4.线程池
  3. <a name="a2373464"></a>
  4. ### 4.1 线程状态介绍
  5. 当线程被创建并启动以后,它既不是一启动就进入了执行状态,也不是一直处于执行状态。线程对象在不同的时期有不同的状态。那么Java中的线程存在哪几种状态呢?
  6. Java中的线程状态被定义在了java.lang.Thread.State枚举类中,State枚举类的源码如下:
  7. ```java
  8. public class Thread {
  9. public enum State {
  10. /* 新建 */
  11. NEW ,
  12. /* 可运行状态 */
  13. RUNNABLE ,
  14. /* 阻塞状态 */
  15. BLOCKED ,
  16. /* 无限等待状态 */
  17. WAITING ,
  18. /* 计时等待 */
  19. TIMED_WAITING ,
  20. /* 终止 */
  21. TERMINATED;
  22. }
  23. // 获取当前线程的状态
  24. public State getState() {
  25. return jdk.internal.misc.VM.toThreadState(threadStatus);
  26. }
  27. }

通过源码我们可以看到Java中的线程存在6种状态,每种线程状态的含义如下

线程状态 具体含义
NEW 一个尚未启动的线程的状态。也称之为初始状态、开始状态。线程刚被创建,但是并未启动。还没调用start方法。MyThread t = new MyThread()只有线程象,没有线程特征。
RUNNABLE 当我们调用线程对象的start方法,那么此时线程对象进入了RUNNABLE状态。那么此时才是真正的在JVM进程中创建了一个线程,线程一经启动并不是立即得到执行,线程的运行与否要听令与CPU的调度,那么我们把这个中间状态称之为可执行状态(RUNNABLE)也就是说它具备执行的资格,但是并没有真正的执行起来而是在等待CPU的度。
BLOCKED 当一个线程试图获取一个对象锁,而该对象锁被其他的线程持有,则该线程进入Blocked状态;当该线程持有锁时,该线程将变成Runnable状态。
WAITING 一个正在等待的线程的状态。也称之为等待状态。造成线程等待的原因有两种,分别是调用Object.wait()、join()方法。处于等待状态的线程,正在等待其他线程去执行一个特定的操作。例如:因为wait()而等待的线程正在等待另一个线程去调用notify()或notifyAll();一个因为join()而等待的线程正在等待另一个线程结束。
TIMED_WAITING 一个在限定时间内等待的线程的状态。也称之为限时等待状态。造成线程限时等待状态的原因有三种,分别是:Thread.sleep(long),Object.wait(long)、join(long)。
TERMINATED 一个完全运行完成的线程的状态。也称之为终止状态、结束状态

各个状态的转换,如下图所示:

1591163781941.png

4.2 线程池-基本原理

概述 :

  1. 提到池,大家应该能想到的就是水池。水池就是一个容器,在该容器中存储了很多的水。那么什么是线程池呢?线程池也是可以看做成一个池子,在该池子中存储很多个线程。

线程池存在的意义:

  1. 线程的创建和销毁的开销是巨大的,而通过线程池的重用性,大大减少了这些不必要的资源开销。

线程池的设计思路 :

  1. 创建一个池子,池子是空的
  2. 有任务需要执行时,才会创建线程对象,当任务执行完毕,线程对象归还给池子。
  3. 再次有新的任务,则直接从池子中获取线程去执行任务。

4.3 线程池-Executors默认线程池

概述 :

  1. JDK对线程池也进行了相关的实现,在真实企业开发中我们也很少去自定义线程池,而是使用JDK中自带的线程池。
  2. 我们可以使用Executors中所提供的**静态**方法来创建线程池
方法名 描述
static newCachedThreadPool() 创建一个默认的线程池
static newFixedThreadPool(int nThreads) 创建一个指定最多线程数量的线程池

代码实现 :

  1. package com.itheima.mythreadpool;
  2. import java.util.concurrent.ExecutorService;
  3. import java.util.concurrent.Executors;
  4. public class MyThreadPoolDemo {
  5. public static void main(String[] args) throws InterruptedException {
  6. //1,创建一个默认的线程池对象.池子中默认是空的.默认最多可以容纳int类型的最大值.
  7. ExecutorService executorService = Executors.newCachedThreadPool();
  8. //Executors --- 可以帮助我们创建线程池对象
  9. //ExecutorService --- 可以帮助我们控制线程池
  10. new Thread()
  11. executorService.submit(()->{
  12. System.out.println(Thread.currentThread().getName() + "在执行了");
  13. });
  14. //Thread.sleep(2000);
  15. executorService.submit(()->{
  16. System.out.println(Thread.currentThread().getName() + "在执行了");
  17. });
  18. executorService.shutdown();
  19. }
  20. }

4.4 线程池-Executors创建指定上限的线程池

使用Executors中所提供的静态方法newFixedThreadPool来创建指定上限线程池

注意事项:

  • 默认线程池中的线程个数为0
  • 参数不是初始值,是最大值

代码实现 :

  1. package com.itheima.mythreadpool;
  2. //创建一个指定最多线程数量的线程池
  3. import java.util.concurrent.ExecutorService;
  4. import java.util.concurrent.Executors;
  5. import java.util.concurrent.ThreadPoolExecutor;
  6. public class MyThreadPoolDemo2 {
  7. public static void main(String[] args) {
  8. //参数不是初始值而是最大值
  9. ExecutorService executorService = Executors.newFixedThreadPool(10);
  10. ThreadPoolExecutor pool = (ThreadPoolExecutor) executorService;
  11. System.out.println(pool.getPoolSize());//0
  12. executorService.submit(()->{
  13. System.out.println(Thread.currentThread().getName() + "在执行了");
  14. });
  15. executorService.submit(()->{
  16. System.out.println(Thread.currentThread().getName() + "在执行了");
  17. });
  18. System.out.println(pool.getPoolSize());//2
  19. // executorService.shutdown();
  20. }
  21. }

4.5 线程池-ThreadPoolExecutor

创建线程池对象 :

ThreadPoolExecutor threadPoolExecutor = new ThreadPoolExecutor(核心线程数量,最大线程数量,空闲线程最大存活时间,任务队列,创建线程工厂,任务的拒绝策略);

1591165506516.png

代码实现 :

  1. package com.itheima.mythreadpool;
  2. import java.util.concurrent.ArrayBlockingQueue;
  3. import java.util.concurrent.Executors;
  4. import java.util.concurrent.ThreadPoolExecutor;
  5. import java.util.concurrent.TimeUnit;
  6. public class MyThreadPoolDemo3 {
  7. // 参数一:核心线程数量
  8. // 参数二:最大线程数
  9. // 参数三:空闲线程最大存活时间
  10. // 参数四:时间单位
  11. // 参数五:任务队列
  12. // 参数六:创建线程工厂
  13. // 参数七:任务的拒绝策略
  14. public static void main(String[] args) {
  15. ThreadPoolExecutor pool = new ThreadPoolExecutor(2,5,2,TimeUnit.SECONDS,new ArrayBlockingQueue<>(10), Executors.defaultThreadFactory(),new ThreadPoolExecutor.AbortPolicy());
  16. pool.submit(new MyRunnable());
  17. pool.submit(new MyRunnable());
  18. pool.shutdown();
  19. }
  20. }

4.6 线程池-参数详解

  • 参数详解
    • corePoolSize: 核心线程的最大值,不能小于0
    • maximumPoolSize:最大线程数,不能小于等于0,maximumPoolSize >= corePoolSize
    • keepAliveTime: 空闲线程最大存活时间,不能小于0
    • unit:时间单位
    • workQueue: 任务队列,不能为null
    • threadFactory: 创建线程工厂,不能为null
    • handler: 任务的拒绝策略,不能为null
  • 任务拒绝策略的触发时机:提交的任务 > 线程池的最大线程数 + 队列容量
  • 默认任务拒绝策略会抛出异常

4.7 线程池-任务拒绝策略

  • RejectedExecutionHandler是jdk提供的一个任务拒绝策略接口,它下面存在4个子类。 | 拒绝策略 | | | —- | —- | | ThreadPoolExecutor.AbortPolicy | 丢弃任务并抛出RejectedExecutionException异常。是默认的策略 | | ThreadPoolExecutor.DiscardPolicy | 丢弃任务,但是不抛出异常,这是不推荐的做法 | | ThreadPoolExecutor.DiscardOldestPolicy | 抛弃队列中等待最久的任务 然后把当前任务加入队列中 | | ThreadPoolExecutor.CallerRunsPolicy | 调用任务的run()方法绕过线程池直接执行 |

案例演示1:演示ThreadPoolExecutor.AbortPolicy任务处理策略

  1. public class ThreadPoolExecutorDemo01 {
  2. public static void main(String[] args) {
  3. /**
  4. * 核心线程数量为1 , 最大线程池数量为3, 任务容器的容量为1 ,空闲线程的最大存在时间为20s
  5. */
  6. ThreadPoolExecutor threadPoolExecutor = new ThreadPoolExecutor(
  7. 1 ,
  8. 3 ,
  9. 20 ,
  10. TimeUnit.SECONDS ,
  11. new ArrayBlockingQueue<>(1) ,
  12. Executors.defaultThreadFactory() ,
  13. new ThreadPoolExecutor.AbortPolicy()) ;
  14. // 提交5个任务,而该线程池最多可以处理4个任务,当我们使用AbortPolicy这个任务处理策略的时候,就会抛出异常
  15. for(int x = 0 ; x < 5 ; x++) {
  16. threadPoolExecutor.submit(() -> {
  17. System.out.println(Thread.currentThread().getName() + "---->> 执行了任务");
  18. });
  19. }
  20. }
  21. }

控制台输出结果

  1. pool-1-thread-1---->> 执行了任务
  2. pool-1-thread-3---->> 执行了任务
  3. pool-1-thread-2---->> 执行了任务
  4. pool-1-thread-3---->> 执行了任务

控制台报错,仅仅执行了4个任务,有一个任务被丢弃了

案例演示2:演示ThreadPoolExecutor.DiscardPolicy任务处理策略

  1. public class ThreadPoolExecutorDemo02 {
  2. public static void main(String[] args) {
  3. /**
  4. * 核心线程数量为1 , 最大线程池数量为3, 任务容器的容量为1 ,空闲线程的最大存在时间为20s
  5. */
  6. ThreadPoolExecutor threadPoolExecutor = new ThreadPoolExecutor(
  7. 1 ,
  8. 3 ,
  9. 20 ,
  10. TimeUnit.SECONDS ,
  11. new ArrayBlockingQueue<>(1) ,
  12. Executors.defaultThreadFactory() ,
  13. new ThreadPoolExecutor.DiscardPolicy()) ;
  14. // 提交5个任务,而该线程池最多可以处理4个任务,当我们使用DiscardPolicy这个任务处理策略的时候,控制台不会报错
  15. for(int x = 0 ; x < 5 ; x++) {
  16. threadPoolExecutor.submit(() -> {
  17. System.out.println(Thread.currentThread().getName() + "---->> 执行了任务");
  18. });
  19. }
  20. }
  21. }

控制台输出结果

  1. pool-1-thread-1---->> 执行了任务
  2. pool-1-thread-1---->> 执行了任务
  3. pool-1-thread-3---->> 执行了任务
  4. pool-1-thread-2---->> 执行了任务

控制台没有报错,仅仅执行了4个任务,有一个任务被丢弃了

案例演示3:演示ThreadPoolExecutor.DiscardOldestPolicy任务处理策略

  1. public class ThreadPoolExecutorDemo02 {
  2. public static void main(String[] args) {
  3. /**
  4. * 核心线程数量为1 , 最大线程池数量为3, 任务容器的容量为1 ,空闲线程的最大存在时间为20s
  5. */
  6. ThreadPoolExecutor threadPoolExecutor;
  7. threadPoolExecutor = new ThreadPoolExecutor(
  8. 1 ,
  9. 3 ,
  10. 20 ,
  11. TimeUnit.SECONDS ,
  12. new ArrayBlockingQueue<>(1) ,
  13. Executors.defaultThreadFactory() ,
  14. new ThreadPoolExecutor.DiscardOldestPolicy());
  15. // 提交5个任务
  16. for(int x = 0 ; x < 5 ; x++) {
  17. // 定义一个变量,来指定指定当前执行的任务;这个变量需要被final修饰
  18. final int y = x ;
  19. threadPoolExecutor.submit(() -> {
  20. System.out.println(Thread.currentThread().getName() + "---->> 执行了任务" + y);
  21. });
  22. }
  23. }
  24. }

控制台输出结果

  1. pool-1-thread-2---->> 执行了任务2
  2. pool-1-thread-1---->> 执行了任务0
  3. pool-1-thread-3---->> 执行了任务3
  4. pool-1-thread-1---->> 执行了任务4

由于任务1在线程池中等待时间最长,因此任务1被丢弃。

案例演示4:演示ThreadPoolExecutor.CallerRunsPolicy任务处理策略

  1. public class ThreadPoolExecutorDemo04 {
  2. public static void main(String[] args) {
  3. /**
  4. * 核心线程数量为1 , 最大线程池数量为3, 任务容器的容量为1 ,空闲线程的最大存在时间为20s
  5. */
  6. ThreadPoolExecutor threadPoolExecutor;
  7. threadPoolExecutor = new ThreadPoolExecutor(
  8. 1 ,
  9. 3 ,
  10. 20 ,
  11. TimeUnit.SECONDS ,
  12. new ArrayBlockingQueue<>(1) ,
  13. Executors.defaultThreadFactory() ,
  14. new ThreadPoolExecutor.CallerRunsPolicy());
  15. // 提交5个任务
  16. for(int x = 0 ; x < 5 ; x++) {
  17. threadPoolExecutor.submit(() -> {
  18. System.out.println(Thread.currentThread().getName() + "---->> 执行了任务");
  19. });
  20. }
  21. }
  22. }

控制台输出结果

  1. pool-1-thread-1---->> 执行了任务
  2. pool-1-thread-3---->> 执行了任务
  3. pool-1-thread-2---->> 执行了任务
  4. pool-1-thread-1---->> 执行了任务
  5. main---->> 执行了任务

通过控制台的输出,我们可以看到次策略没有通过线程池中的线程执行任务,而是直接调用任务的run()方法绕过线程池直接执行。

5. 原子性

5.1 volatile-问题

代码分析 :

  1. package com.itheima.myvolatile;
  2. public class Demo {
  3. public static void main(String[] args) {
  4. MyThread1 t1 = new MyThread1();
  5. t1.setName("小路同学");
  6. t1.start();
  7. MyThread2 t2 = new MyThread2();
  8. t2.setName("小皮同学");
  9. t2.start();
  10. }
  11. }
  1. package com.itheima.myvolatile;
  2. public class Money {
  3. public static int money = 100000;
  4. }
  1. package com.itheima.myvolatile;
  2. public class MyThread1 extends Thread {
  3. @Override
  4. public void run() {
  5. while(Money.money == 100000){
  6. }
  7. System.out.println("结婚基金已经不是十万了");
  8. }
  9. }
  1. package com.itheima.myvolatile;
  2. public class MyThread2 extends Thread {
  3. @Override
  4. public void run() {
  5. try {
  6. Thread.sleep(10);
  7. } catch (InterruptedException e) {
  8. e.printStackTrace();
  9. }
  10. Money.money = 90000;
  11. }
  12. }

程序问题 : 女孩虽然知道结婚基金是十万,但是当基金的余额发生变化的时候,女孩无法知道最新的余额。

5.2 volatile解决

以上案例出现的问题 :

  1. A线程修改了共享数据时,B线程没有及时获取到最新的值,如果还在使用原先的值,就会出现问题
  2. 1,堆内存是唯一的,每一个线程都有自己的线程栈。
  3. 2 ,每一个线程在使用堆里面变量的时候,都会先拷贝一份到变量的副本中。
  4. 3 ,在线程中,每一次使用是从变量的副本中获取的。

Volatile关键字 : 强制线程每次在使用的时候,都会看一下共享区域最新的值

代码实现 : 使用volatile关键字解决

  1. package com.itheima.myvolatile;
  2. public class Demo {
  3. public static void main(String[] args) {
  4. MyThread1 t1 = new MyThread1();
  5. t1.setName("小路同学");
  6. t1.start();
  7. MyThread2 t2 = new MyThread2();
  8. t2.setName("小皮同学");
  9. t2.start();
  10. }
  11. }
  1. package com.itheima.myvolatile;
  2. public class Money {
  3. public static volatile int money = 100000;
  4. }
  1. package com.itheima.myvolatile;
  2. public class MyThread1 extends Thread {
  3. @Override
  4. public void run() {
  5. while(Money.money == 100000){
  6. }
  7. System.out.println("结婚基金已经不是十万了");
  8. }
  9. }
  1. package com.itheima.myvolatile;
  2. public class MyThread2 extends Thread {
  3. @Override
  4. public void run() {
  5. try {
  6. Thread.sleep(10);
  7. } catch (InterruptedException e) {
  8. e.printStackTrace();
  9. }
  10. Money.money = 90000;
  11. }
  12. }

5.3 synchronized解决

synchronized解决 :

  1. 1 、线程获得锁
  2. 2 、清空变量副本
  3. 3 、拷贝共享变量最新的值到变量副本中
  4. 4 、执行代码
  5. 5 、将修改后变量副本中的值赋值给共享数据
  6. 6 、释放锁

代码实现 :

  1. package com.itheima.myvolatile2;
  2. public class Demo {
  3. public static void main(String[] args) {
  4. MyThread1 t1 = new MyThread1();
  5. t1.setName("小路同学");
  6. t1.start();
  7. MyThread2 t2 = new MyThread2();
  8. t2.setName("小皮同学");
  9. t2.start();
  10. }
  11. }
  1. package com.itheima.myvolatile2;
  2. public class Money {
  3. public static Object lock = new Object();
  4. public static int money = 100000;
  5. }
  1. package com.itheima.myvolatile2;
  2. public class MyThread1 extends Thread {
  3. @Override
  4. public void run() {
  5. while(true){
  6. synchronized (Money.lock){
  7. if(Money.money != 100000){
  8. System.out.println("结婚基金已经不是十万了");
  9. break;
  10. }
  11. }
  12. }
  13. }
  14. }
  1. package com.itheima.myvolatile2;
  2. public class MyThread2 extends Thread {
  3. @Override
  4. public void run() {
  5. synchronized (Money.lock) {
  6. try {
  7. Thread.sleep(10);
  8. } catch (InterruptedException e) {
  9. e.printStackTrace();
  10. }
  11. Money.money = 90000;
  12. }
  13. }
  14. }

5.4 原子性

概述 :

所谓的原子性是指在一次操作或者多次操作中,要么所有的操作全部都得到了执行并且不会受到任何因素的干扰而中断,要么所有的操作都不执行,多个操作是一个不可以分割的整体。

2020-08-23_205105.png

代码实现 :

  1. package com.itheima.threadatom;
  2. public class AtomDemo {
  3. public static void main(String[] args) {
  4. MyAtomThread atom = new MyAtomThread();
  5. for (int i = 0; i < 100; i++) {
  6. new Thread(atom).start();
  7. }
  8. }
  9. }
  10. class MyAtomThread implements Runnable {
  11. private volatile int count = 0; //送冰淇淋的数量
  12. @Override
  13. public void run() {
  14. for (int i = 0; i < 100; i++) {
  15. //1,从共享数据中读取数据到本线程栈中.
  16. //2,修改本线程栈中变量副本的值
  17. //3,会把本线程栈中变量副本的值赋值给共享数据.
  18. count++;
  19. System.out.println("已经送了" + count + "个冰淇淋");
  20. }
  21. }
  22. }

代码总结 : count++ 不是一个原子性操作, 他在执行的过程中,有可能被其他线程打断

5.5 volatile关键字不能保证原子性

  • volatile关键字:
    • 只能保证线程每次在使用共享数据的时候是最新值。
    • 但是不能保证原子性。
  • 解决方案 :
    • 我们可以给count操作添加锁,那么count操作就是临界区中的代码,临界区中的代码一次只能被一个线程去执行,所以count++就变成了原子操作。
  1. package com.itheima.threadatom2;
  2. public class AtomDemo {
  3. public static void main(String[] args) {
  4. MyAtomThread atom = new MyAtomThread();
  5. for (int i = 0; i < 100; i++) {
  6. new Thread(atom).start();
  7. }
  8. }
  9. }
  10. class MyAtomThread implements Runnable {
  11. private volatile int count = 0; //送冰淇淋的数量
  12. private Object lock = new Object();
  13. @Override
  14. public void run() {
  15. for (int i = 0; i < 100; i++) {
  16. //1,从共享数据中读取数据到本线程栈中.
  17. //2,修改本线程栈中变量副本的值
  18. //3,会把本线程栈中变量副本的值赋值给共享数据.
  19. synchronized (lock) {
  20. count++;
  21. System.out.println("已经送了" + count + "个冰淇淋");
  22. }
  23. }
  24. }
  25. }

5.6 原子性_AtomicInteger

概述:

java从JDK1.5开始提供了java.util.concurrent.atomic包(简称Atomic包),这个包中的原子操作类提供了一种用法简单,性能高效,线程安全地更新一个变量的方式。因为变量的类型有很多种,所以在Atomic包里一共提供了13个类,属于4种类型的原子更新方式,分别是原子更新基本类型、原子更新数组、原子更新引用和原子更新属性(字段)。

本次我们只讲解使用原子的方式更新基本类型,使用原子的方式更新基本类型Atomic包提供了以下3个类:

AtomicBoolean: 原子更新布尔类型

AtomicInteger: 原子更新整型

AtomicLong: 原子更新长整型

AtomicInteger的常用方法如下:

方法名
AtomicInteger() 初始化一个默认值为0的原子型Integer
AtomicInteger(int initialValue) 初始化一个指定值的原子型Integer
int get() 获取值
int getAndIncrement() 以原子方式将当前值加1,注意,这里返回的是自增前的值。
int incrementAndGet() 以原子方式将当前值加1,注意,这里返回的是自增后的值。
int addAndGet(int data) 以原子方式将输入的数值与实例中的值(AtomicInteger里的value)相加,并返回结果。
int getAndSet(int value) 以原子方式设置为newValue的值,并返回旧值。

代码实现 :

  1. package com.itheima.threadatom3;
  2. import java.util.concurrent.atomic.AtomicInteger;
  3. public class MyAtomIntergerDemo1 {
  4. // public AtomicInteger(): 初始化一个默认值为0的原子型Integer
  5. // public AtomicInteger(int initialValue): 初始化一个指定值的原子型Integer
  6. public static void main(String[] args) {
  7. AtomicInteger ac = new AtomicInteger();
  8. System.out.println(ac);
  9. AtomicInteger ac2 = new AtomicInteger(10);
  10. System.out.println(ac2);
  11. }
  12. }
  1. package com.itheima.threadatom3;
  2. import java.lang.reflect.Field;
  3. import java.util.concurrent.atomic.AtomicInteger;
  4. public class MyAtomIntergerDemo2 {
  5. // int get(): 获取值
  6. // int getAndIncrement(): 以原子方式将当前值加1,注意,这里返回的是自增前的值。
  7. // int incrementAndGet(): 以原子方式将当前值加1,注意,这里返回的是自增后的值。
  8. // int addAndGet(int data): 以原子方式将参数与对象中的值相加,并返回结果。
  9. // int getAndSet(int value): 以原子方式设置为newValue的值,并返回旧值。
  10. public static void main(String[] args) {
  11. // AtomicInteger ac1 = new AtomicInteger(10);
  12. // System.out.println(ac1.get());
  13. // AtomicInteger ac2 = new AtomicInteger(10);
  14. // int andIncrement = ac2.getAndIncrement();
  15. // System.out.println(andIncrement);
  16. // System.out.println(ac2.get());
  17. // AtomicInteger ac3 = new AtomicInteger(10);
  18. // int i = ac3.incrementAndGet();
  19. // System.out.println(i);//自增后的值
  20. // System.out.println(ac3.get());
  21. // AtomicInteger ac4 = new AtomicInteger(10);
  22. // int i = ac4.addAndGet(20);
  23. // System.out.println(i);
  24. // System.out.println(ac4.get());
  25. AtomicInteger ac5 = new AtomicInteger(100);
  26. int andSet = ac5.getAndSet(20);
  27. System.out.println(andSet);
  28. System.out.println(ac5.get());
  29. }
  30. }

5.7 AtomicInteger-内存解析

AtomicInteger原理 :

  1. 自旋锁 + CAS 算法

CAS算法:有3个操作数(内存值V, 旧的预期值A,要修改的值B)

  • 当旧的预期值A == 内存值 此时修改成功,将V改为B2020-08-23_212737.png
  • 当旧的预期值A!=内存值 此时修改失败,不做任何操作2020-08-23_212918.png
  • 并重新获取现在的最新值(这个重新获取的动作就是自旋)

5.8 AtomicInteger-源码解析

代码实现 :

  1. package com.itheima.threadatom4;
  2. public class AtomDemo {
  3. public static void main(String[] args) {
  4. MyAtomThread atom = new MyAtomThread();
  5. for (int i = 0; i < 100; i++) {
  6. new Thread(atom).start();
  7. }
  8. }
  9. }
  1. package com.itheima.threadatom4;
  2. import java.util.concurrent.atomic.AtomicInteger;
  3. public class MyAtomThread implements Runnable {
  4. AtomicInteger ac = new AtomicInteger(0);
  5. @Override
  6. public void run() {
  7. for (int i = 0; i < 100; i++) {
  8. //1,从共享数据中读取数据到本线程栈中.
  9. //2,修改本线程栈中变量副本的值
  10. //3,会把本线程栈中变量副本的值赋值给共享数据.
  11. int count = ac.incrementAndGet();
  12. System.out.println("已经送了" + count + "个冰淇淋");
  13. }
  14. }
  15. }

源码解析 :

  1. //先自增,然后获取自增后的结果
  2. public final int incrementAndGet() {
  3. //+ 1 自增后的结果
  4. //this 就表示当前的atomicInteger(值)
  5. //1 自增一次
  6. return U.getAndAddInt(this, VALUE, 1) + 1;
  7. }
  8. public final int getAndAddInt(Object o, long offset, int delta) {
  9. //v 旧值
  10. int v;
  11. //自旋的过程
  12. do {
  13. //不断的获取旧值
  14. v = getIntVolatile(o, offset);
  15. //如果这个方法的返回值为false,那么继续自旋
  16. //如果这个方法的返回值为true,那么自旋结束
  17. //o 表示的就是内存值
  18. //v 旧值
  19. //v + delta 修改后的值
  20. } while (!weakCompareAndSetInt(o, offset, v, v + delta));
  21. //作用:比较内存中的值,旧值是否相等,如果相等就把修改后的值写到内存中,返回true。表示修改成功。
  22. // 如果不相等,无法把修改后的值写到内存中,返回false。表示修改失败。
  23. //如果修改失败,那么继续自旋。
  24. return v;
  25. }
  1. v= this.getIntVolatile(obj, offset);
  2. 通过对象和偏移量获取变量的值
  3. 由于volatile的修饰, 所有线程看到的v都是一样的
  4. weakCompareAndSetInt()方法
  5. 尝试修改v的值,具体地, 该方法也会通过objoffset获取变量的值
  6. 如果这个值和v不一样, 说明其他线程修改了obj+offset地址处的值, weakCompareAndSetInt()返回false, 继续循环
  7. 如果这个值和v一样, 说明没有其他线程修改obj+offset地址处的值, 此时可以将obj+offset地址处的值改为v+delta, weakCompareAndSetInt()返回true, 退出循环
  8. weakCompareAndSetInt()方法是原子操作, 所以compareAndSwapInt()修改obj+offset地址处的值的时候不会被其他线程中断

5.9 悲观锁和乐观锁

synchronized和CAS的区别 :

相同点:

  • 在多线程情况下,都可以保证共享数据的安全性。

不同点:

  • Synchronized总是从最坏的角度出发,认为每次获取数据的时候,别人都有可能修改。所以在每 次操作共享数据之前,都会上锁。(悲观锁)
  • CAS是从乐观的角度出发,假设每次获取数据别人都不会修改,所以不会上锁。只不过在修改共享数据的时候,会检查一下,别人有没有修改过这个数据。
    • 如果别人修改过,那么我再次获取现在最新的值。
    • 如果别人没有修改过,那么我现在直接修改共享数据的值。(乐观锁)

6. 并发工具类

6.1 并发工具类-Hashtable

Hashtable出现的原因 :

  • 在集合类中HashMap是比较常用的集合对象,但是HashMap是线程不安全的(多线程环境下可能会存在问题)。
  • 为了保证数据的安全性我们可以使用Hashtable,但是Hashtable的效率低下。
    • Hashtable采取悲观锁synchronized的形式保证数据的安全性
    • 只要有线程访问, 会将整张表全部锁起来, 所以Hashtable的效率低下。

代码实现 :

  1. package com.itheima.mymap;
  2. import java.util.HashMap;
  3. import java.util.Hashtable;
  4. public class MyHashtableDemo {
  5. public static void main(String[] args) throws InterruptedException {
  6. Hashtable<String, String> hm = new Hashtable<>();
  7. Thread t1 = new Thread(() -> {
  8. for (int i = 0; i < 25; i++) {
  9. hm.put(i + "", i + "");
  10. }
  11. });
  12. Thread t2 = new Thread(() -> {
  13. for (int i = 25; i < 51; i++) {
  14. hm.put(i + "", i + "");
  15. }
  16. });
  17. t1.start();
  18. t2.start();
  19. System.out.println("----------------------------");
  20. //为了t1和t2能把数据全部添加完毕
  21. Thread.sleep(1000);
  22. for (int i = 0; i < 51; i++) {
  23. System.out.println(hm.get(i + ""));
  24. }
  25. }
  26. }

6.2 并发工具类-ConcurrentHashMap基本使用

ConcurrentHashMap出现的原因 :

  • 在集合类中HashMap是比较常用的集合对象,但是HashMap是线程不安全的(多线程环境下可能会存在问题)。为了保证数据的安全性我们可以使用Hashtable,但是Hashtable的效率低下。
  • 基于以上两个原因我们可以使用JDK1.5以后所提供的ConcurrentHashMap。

体系结构 :

1591168965857.png

总结 :

  1. 1 HashMap是线程不安全的。多线程环境下会有数据安全问题
  2. 2 Hashtable是线程安全的,但是会将整张表锁起来,效率低下
  3. 3ConcurrentHashMap也是线程安全的,效率较高。 JDK7JDK8中,底层原理不一样。

代码实现 :

  1. package com.itheima.mymap;
  2. import java.util.Hashtable;
  3. import java.util.concurrent.ConcurrentHashMap;
  4. public class MyConcurrentHashMapDemo {
  5. public static void main(String[] args) throws InterruptedException {
  6. ConcurrentHashMap<String, String> hm = new ConcurrentHashMap<>(100);
  7. Thread t1 = new Thread(() -> {
  8. for (int i = 0; i < 25; i++) {
  9. hm.put(i + "", i + "");
  10. }
  11. });
  12. Thread t2 = new Thread(() -> {
  13. for (int i = 25; i < 51; i++) {
  14. hm.put(i + "", i + "");
  15. }
  16. });
  17. t1.start();
  18. t2.start();
  19. System.out.println("----------------------------");
  20. //为了t1和t2能把数据全部添加完毕
  21. Thread.sleep(1000);
  22. //0-0 1-1 ..... 50- 50
  23. for (int i = 0; i < 51; i++) {
  24. System.out.println(hm.get(i + ""));
  25. }//0 1 2 3 .... 50
  26. }
  27. }

6.3 并发工具类-ConcurrentHashMap1.7原理

1591169254280.png

6.4 并发工具类-ConcurrentHashMap1.8原理

1591169338256.png

总结 :

  1. 1,如果使用空参构造创建ConcurrentHashMap对象,则什么事情都不做。在第一次添加元素的时候创建哈希表
  2. 2,计算当前元素应存入的索引。
  3. 3,如果该索引位置为null,则利用cas算法,将本结点添加到数组中。
  4. 4,如果该索引位置不为null,则利用volatile关键字获得当前位置最新的结点地址,挂在他下面,变成链表。
  5. 5,当链表的长度大于等于8时,自动转换成红黑树6,以链表或者红黑树头结点为锁对象,配合悲观锁保证多线程操作集合时数据的安全性

并发容器总结

20170206101943154.png

  • JUC包中List接口的实现类:CopyOnWriteArrayList
    • CopyOnWriteArrayList是线程安全的ArrayList
  • JUC包中Set接口的实现类:CopyOnWriteArraySet、ConcurrentSkipListSet
    • CopyOnWriteArraySet是线程安全的Set,它内部包含了一个CopyOnWriteArrayList,因此本质上是由CopyOnWriteArrayList实现的。
    • ConcurrentSkipListSet相当于线程安全的TreeSet。它是有序的Set。由ConcurrentSkipListMap实现

20170206102044874.png

  • ConcurrentHashMap:线程安全的HashMap。采用分段锁实现高效并发。
  • ConcurrentSkipListMap:线程安全的有序Map。使用跳表实现高效并发。

20170206102114249.png

  • ConcurrentLinkedQueue:线程安全的无界队列。底层采用单链表。支持FIFO。
  • ConcurrentLinkedDeque:线程安全的无界双端队列。底层采用双向链表。支持FIFO和FILO。
  • ArrayBlockingQueue:数组实现的阻塞队列。
  • LinkedBlockingQueue:链表实现的阻塞队列。
  • LinkedBlockingDeque:双向链表实现的双端阻塞队列。

6.5 并发工具类-CountDownLatch

CountDownLatch类 :

方法 解释
public CountDownLatch(int count) 参数传递线程数,表示等待线程数量
public void await() 让线程等待
public void countDown() 当前线程执行完毕

使用场景: 让某一条线程等待其他线程执行完毕之后再执行

代码实现 :

  1. package com.itheima.mycountdownlatch;
  2. import java.util.concurrent.CountDownLatch;
  3. public class ChileThread1 extends Thread {
  4. private CountDownLatch countDownLatch;
  5. public ChileThread1(CountDownLatch countDownLatch) {
  6. this.countDownLatch = countDownLatch;
  7. }
  8. @Override
  9. public void run() {
  10. //1.吃饺子
  11. for (int i = 1; i <= 10; i++) {
  12. System.out.println(getName() + "在吃第" + i + "个饺子");
  13. }
  14. //2.吃完说一声
  15. //每一次countDown方法的时候,就让计数器-1
  16. countDownLatch.countDown();
  17. }
  18. }
  1. package com.itheima.mycountdownlatch;
  2. import java.util.concurrent.CountDownLatch;
  3. public class ChileThread2 extends Thread {
  4. private CountDownLatch countDownLatch;
  5. public ChileThread2(CountDownLatch countDownLatch) {
  6. this.countDownLatch = countDownLatch;
  7. }
  8. @Override
  9. public void run() {
  10. //1.吃饺子
  11. for (int i = 1; i <= 15; i++) {
  12. System.out.println(getName() + "在吃第" + i + "个饺子");
  13. }
  14. //2.吃完说一声
  15. //每一次countDown方法的时候,就让计数器-1
  16. countDownLatch.countDown();
  17. }
  18. }
  1. package com.itheima.mycountdownlatch;
  2. import java.util.concurrent.CountDownLatch;
  3. public class ChileThread3 extends Thread {
  4. private CountDownLatch countDownLatch;
  5. public ChileThread3(CountDownLatch countDownLatch) {
  6. this.countDownLatch = countDownLatch;
  7. }
  8. @Override
  9. public void run() {
  10. //1.吃饺子
  11. for (int i = 1; i <= 20; i++) {
  12. System.out.println(getName() + "在吃第" + i + "个饺子");
  13. }
  14. //2.吃完说一声
  15. //每一次countDown方法的时候,就让计数器-1
  16. countDownLatch.countDown();
  17. }
  18. }
  1. package com.itheima.mycountdownlatch;
  2. import java.util.concurrent.CountDownLatch;
  3. public class MotherThread extends Thread {
  4. private CountDownLatch countDownLatch;
  5. public MotherThread(CountDownLatch countDownLatch) {
  6. this.countDownLatch = countDownLatch;
  7. }
  8. @Override
  9. public void run() {
  10. //1.等待
  11. try {
  12. //当计数器变成0的时候,会自动唤醒这里等待的线程。
  13. countDownLatch.await();
  14. } catch (InterruptedException e) {
  15. e.printStackTrace();
  16. }
  17. //2.收拾碗筷
  18. System.out.println("妈妈在收拾碗筷");
  19. }
  20. }
  1. package com.itheima.mycountdownlatch;
  2. import java.util.concurrent.CountDownLatch;
  3. public class MyCountDownLatchDemo {
  4. public static void main(String[] args) {
  5. //1.创建CountDownLatch的对象,需要传递给四个线程。
  6. //在底层就定义了一个计数器,此时计数器的值就是3
  7. CountDownLatch countDownLatch = new CountDownLatch(3);
  8. //2.创建四个线程对象并开启他们。
  9. MotherThread motherThread = new MotherThread(countDownLatch);
  10. motherThread.start();
  11. ChileThread1 t1 = new ChileThread1(countDownLatch);
  12. t1.setName("小明");
  13. ChileThread2 t2 = new ChileThread2(countDownLatch);
  14. t2.setName("小红");
  15. ChileThread3 t3 = new ChileThread3(countDownLatch);
  16. t3.setName("小刚");
  17. t1.start();
  18. t2.start();
  19. t3.start();
  20. }
  21. }

总结 :

  1. 1. CountDownLatch(int count):参数写等待线程的数量。并定义了一个计数器。
  2. 2. await():让线程等待,当计数器为0时,会唤醒等待的线程
  3. 3. countDown(): 线程执行完毕时调用,会将计数器-1

6.6 并发工具类-Semaphore

使用场景 :

  1. 可以控制访问特定资源的线程数量。

实现步骤 :

  1. 1,需要有人管理这个通道
  2. 2,当有车进来了,发通行许可证
  3. 3,当车出去了,收回通行许可证
  4. 4,如果通行许可证发完了,那么其他车辆只能等着

代码实现 :

  1. package com.itheima.mysemaphore;
  2. import java.util.concurrent.Semaphore;
  3. public class MyRunnable implements Runnable {
  4. //1.获得管理员对象,
  5. private Semaphore semaphore = new Semaphore(2);
  6. @Override
  7. public void run() {
  8. //2.获得通行证
  9. try {
  10. semaphore.acquire();
  11. //3.开始行驶
  12. System.out.println("获得了通行证开始行驶");
  13. Thread.sleep(2000);
  14. System.out.println("归还通行证");
  15. //4.归还通行证
  16. semaphore.release();
  17. } catch (InterruptedException e) {
  18. e.printStackTrace();
  19. }
  20. }
  21. }
  1. package com.itheima.mysemaphore;
  2. public class MySemaphoreDemo {
  3. public static void main(String[] args) {
  4. MyRunnable mr = new MyRunnable();
  5. for (int i = 0; i < 100; i++) {
  6. new Thread(mr).start();
  7. }
  8. }
  9. }

线程的六种状态分别为 ?

  1. 新建,就绪,阻塞,等待,计时等待,死亡

线程池能给我们带来什么好处 ?

  1. 复用,线程创建很耗资源,从线程池中拿取创建好的线程

ThreadPoolExecutor(参数1….参数7) 七个参数分别代表的含义 ?

  1. 核心线程数,最大线程数,存活时间,时间单位,队列,线程工厂对象,拒绝策略

volatile关键字的作用 ?

  1. 多线程情况下,保证变量的可见性