本站消息

站长简介/公众号

  出租广告位,需要合作请联系站长


+关注
已关注

分类  

暂无分类

标签  

暂无标签

日期归档  

2024-11(2)

Java之线程篇七

发布于2024-11-02 10:18     阅读(139)     评论(0)     点赞(3)     收藏(1)


目录

单例模式

饿汉模式

懒汉模式-单线程版

懒汉模式-多线程版

阻塞队列

生产者消费者模型

标准库中的阻塞队列

阻塞队列实现

定时器

标准库中的定时器

实现定时器

线程池

标准库中的线程池

Executors 创建线程池的几种方式

线程池的优点

ThreadPoolExecutor的构造方法


单例模式

单例模式能保证某个类在程序中只存在唯一一份实例, 而不会创建出多个实例.
单例模式具体的实现方式, 分成 "饿汉" 和 "懒汉" 两种.

饿汉模式
类加载的同时 , 创建实例 .

代码示例

  1. // 期望这个类能够有唯一一个实例.
  2. class Singleton {
  3. private static Singleton instance = new Singleton();
  4. // 通过这个方法来获取到刚才的实例.
  5. // 后续如果想使用这个类的实例, 都通过 getInstance 方法来获取.
  6. public static Singleton getInstance() {
  7. return instance;
  8. }
  9. // 把构造方法设置为 私有 . 此时类外面的其他代码, 就无法 new 出这个类的对象了.
  10. private Singleton() { }
  11. }
  12. public class Demo17 {
  13. public static void main(String[] args) {
  14. Singleton s1 = Singleton.getInstance();
  15. Singleton s2 = Singleton.getInstance();
  16. System.out.println(s1 == s2);
  17. }
  18. }

运行结果

懒汉模式-单线程版
类加载的时候不创建实例 . 第一次使用的时候才创建实例 .
  1. class Singleton {
  2.    private static Singleton instance = null;
  3.    private Singleton() {}
  4.    public static Singleton getInstance() {
  5.        if (instance == null) {
  6.            instance = new Singleton();
  7.       }
  8.        return instance;
  9.   }
  10. }
懒汉模式-多线程
  1. class Singleton {
  2.    private static Singleton instance = null;
  3.    private Singleton() {}
  4.    public synchronized static Singleton getInstance() {
  5.        if (instance == null) {
  6.            instance = new Singleton();
  7.       }
  8.        return instance;
  9.   }
  10. }

懒汉模式-多线程版改进

使用双重 if 判定 , 降低锁竞争的频率 .
instance 加上了 volatile.
  1. class Singleton {
  2.    private static volatile Singleton instance = null;
  3.    private Singleton() {}
  4.    public static Singleton getInstance() {
  5.        if (instance == null) {
  6.            synchronized (Singleton.class) {
  7.           if (instance == null) {
  8.               instance = new Singleton();
  9.               }
  10.           }
  11.       }
  12.        return instance;
  13.   }
  14. }

上述代码使用volatile的作用

1.防止指令重排序:在多线程环境中,JVM 和现代处理器可能会对代码进行优化,以提高执行效率。这种优化可能包括指令重排序,即改变指令的执行顺序。在 Singleton 的实例化过程中,如果 instance 变量没有被声明为 volatile,那么 JVM 可能会将 instance = new Singleton(); 这行代码分解为三个操作:
分配内存给 instance。
调用 Singleton 的构造函数来初始化对象。
将 instance 指向分配的内存地址。

如果没有 volatile,这三个操作可能会被重排序,导致某个线程在 instance 被正确初始化之前就观察到 instance 不为 null 的情况,但此时 instance 指向的对象可能还没有完全初始化(即构造函数还未完全执行完毕)。这被称为“部分初始化”问题,可能导致程序出现不可预测的行为。通过声明 instance 为 volatile,JVM 会保证 instance 的赋值操作不会被重排序到构造函数调用之前,从而避免这个问题。

2.保证可见性:volatile 关键字还确保了不同线程之间对 instance 变量的可见性。即,当一个线程修改了 instance 的值(从 null 变为指向一个 Singleton 实例的引用),这个修改会立即对其他线程可见。没有 volatile,一个线程可能无法看到另一个线程对 instance 的修改,从而导致它错误地创建另一个 Singleton 实例。

阻塞队列
阻塞队列是一种特殊的队列. 也遵守 "先进先出" 的原则. 
阻塞队列能是一种线程安全的数据结构, 并且具有以下特性:
当队列满的时候, 继续入队列就会阻塞, 直到有其他线程从队列中取走元素. 
当队列空的时候, 继续出队列也会阻塞, 直到有其他线程往队列中插入元素. 

阻塞队列的一个典型应用场景就是 "生产者消费者模型". 这是一种非常典型的开发模型. 

生产者消费者模型

生产者消费者模式就是通过一个容器来解决生产者和消费者的强耦合问题。
生产者和消费者彼此之间不直接通讯,而通过阻塞队列来进行通讯,所以生产者生产完数据之后不用等待消费者处理,直接扔给阻塞队列,消费者不找生产者要数据,而是直接从阻塞队列里取. 

1) 阻塞队列就相当于一个缓冲区,平衡了生产者和消费者的处理能力.
2) 阻塞队列也能使生产者和消费者之间 解耦.

标准库中的阻塞队列
Java 标准库中内置了阻塞队列 . 如果我们需要在一些程序中使用阻塞队列 , 直接使用标准库中的即可 .
BlockingQueue 是一个接口 . 真正实现的类是 LinkedBlockingQueue.
put 方法用于阻塞式的入队列 , take 用于阻塞式的出队列 .
BlockingQueue 也有 offer, poll, peek 等方法 , 但是这些方法不带有阻塞特性 .

 代码示例

  1. import java.util.concurrent.BlockingQueue;
  2. import java.util.concurrent.LinkedBlockingQueue;
  3. public class Demo19 {
  4. public static void main(String[] args) throws InterruptedException {
  5. BlockingQueue<String> queue = new LinkedBlockingQueue<>();
  6. queue.put("111");
  7. queue.put("222");
  8. queue.put("333");
  9. queue.put("444");
  10. String elem = queue.take();
  11. System.out.println(elem);
  12. elem = queue.take();
  13. System.out.println(elem);
  14. elem = queue.take();
  15. System.out.println(elem);
  16. elem = queue.take();
  17. System.out.println(elem);
  18. elem = queue.take();
  19. System.out.println(elem);
  20. }
  21. }

运行结果

阻塞队列实现

通过 "循环队列" 的方式来实现. 
使用 synchronized 进行加锁控制. 
put 插入元素的时候, 判定如果队列满了, 就进行 wait. (注意, 要在循环中进行 wait. 被唤醒时不一定队列就不满了, 因为同时可能是唤醒了多个线程). 
take 取出元素的时候, 判定如果队列为空, 就进行 wait.

  1. class MyBlockingQueue{
  2. private String[] data=new String[1000];
  3. private volatile int head=0;//队列起始位置
  4. private volatile int tail = 0;//队列结束位置的下一个位置
  5. private volatile int size=0;//队列中有效元素的个数
  6. public void put(String elem) throws InterruptedException {
  7. synchronized (this){
  8. while(size==data.length){
  9. this.wait();
  10. }
  11. data[tail]=elem;
  12. tail++;
  13. if(tail==data.length)
  14. tail=0;
  15. size++;
  16. this.notify();
  17. }
  18. }
  19. public String take() throws InterruptedException {
  20. synchronized (this){
  21. while(size==0){
  22. this.wait();
  23. }
  24. String ret=data[head];
  25. head++;
  26. if(head== data.length)
  27. head=0;
  28. size--;
  29. this.notify();
  30. return ret;
  31. }
  32. }
  33. }
  34. public class Demo18 {
  35. public static void main(String[] args) {
  36. MyBlockingQueue queue=new MyBlockingQueue();
  37. //消费者
  38. Thread t1=new Thread(()->{
  39. while(true){
  40. try {
  41. String result=queue.take();
  42. System.out.println("消费元素:"+result);
  43. Thread.sleep(1000);
  44. } catch (InterruptedException e) {
  45. throw new RuntimeException(e);
  46. }
  47. }
  48. });
  49. //生产者
  50. Thread t2=new Thread(()->{
  51. int num=1;
  52. while(true){
  53. try {
  54. queue.put(num+"");
  55. System.out.println("生产元素:"+num);
  56. num++;
  57. } catch (InterruptedException e) {
  58. throw new RuntimeException(e);
  59. }
  60. }
  61. });
  62. t1.start();
  63. t2.start();
  64. }
  65. }

 运行结果

定时器
定时器也是软件开发中的一个重要组件 . 类似于一个 " 闹钟 ". 达到一个设定的时间之后 , 就执行某个指定好的代码.
标准库中的定时器
标准库中提供了一个 Timer . Timer 类的核心方法为 schedule .
schedule 包含两个参数 . 第一个参数指定即将要执行的任务代码 , 第二个参数指定多长时间之后执行 ( 单位为毫秒 ).
代码示例
  1. import java.util.Timer;
  2. import java.util.TimerTask;
  3. public class Demo20 {
  4. public static void main(String[] args) {
  5. Timer timer=new Timer();
  6. //给定时器安排一个任务,预定在某个时间去执行
  7. timer.schedule(new TimerTask() {
  8. @Override
  9. public void run() {
  10. System.out.println("3000");
  11. }
  12. },3000);
  13. timer.schedule(new TimerTask() {
  14. @Override
  15. public void run() {
  16. System.out.println("2000");
  17. }
  18. },2000);
  19. timer.schedule(new TimerTask() {
  20. @Override
  21. public void run() {
  22. System.out.println("1000");
  23. }
  24. },1000);
  25. System.out.println("程序启动");
  26. }
  27. }
运行结果
实现定时器
定时器的构成:
1.一个带优先级的阻塞队列
为啥要带优先级呢? 
因为阻塞队列中的任务都有各自的执行时刻 (delay). 最先执行的任务一定是 delay 最小的. 使用带
优先级的队列就可以高效的把这个 delay 最小的任务找出来. 
2.队列中的每个元素是一个 Task 对象.
3.Task 中带有一个时间属性, 队首元素就是即将要执行的任务.
4.同时有一个 worker 线程一直扫描队首元素, 看队首元素是否需要执行
代码示例
  1. import java.util.Comparator;
  2. import java.util.PriorityQueue;
  3. import java.util.TimerTask;
  4. class MyTimerTask implements Comparable<MyTimerTask>{
  5. private Runnable runnable;
  6. private long time;
  7. public MyTimerTask(Runnable runnable,long delay){
  8. this.runnable=runnable;
  9. this.time=System.currentTimeMillis()+delay;
  10. }
  11. @Override
  12. public int compareTo(MyTimerTask o) {
  13. return (int)(this.time-o.time);
  14. }
  15. public long getTime(){
  16. return time;
  17. }
  18. public Runnable getRunnable() {
  19. return runnable;
  20. }
  21. }
  22. class MyTimer{
  23. private PriorityQueue<MyTimerTask> queue=new PriorityQueue<>();
  24. private Object locker=new Object();
  25. public void schedule(Runnable runnable,long delay){
  26. synchronized (locker){
  27. queue.offer(new MyTimerTask(runnable,delay));
  28. locker.notify();
  29. }
  30. }
  31. public MyTimer() {
  32. Thread t=new Thread(()->{
  33. while(true) {
  34. try {
  35. synchronized (locker) {
  36. while (queue.isEmpty()) {
  37. locker.wait();
  38. }
  39. MyTimerTask task = queue.peek();
  40. long curTime = System.currentTimeMillis();
  41. if (curTime >= task.getTime()) {
  42. task.getRunnable().run();
  43. queue.poll();
  44. } else {
  45. locker.wait(task.getTime() - curTime);
  46. }
  47. }
  48. } catch (InterruptedException e) {
  49. throw new RuntimeException(e);
  50. }
  51. }
  52. });
  53. t.start();
  54. }
  55. }
  56. public class Demo21 {
  57. public static void main(String[] args) {
  58. MyTimer timer = new MyTimer();
  59. timer.schedule(new Runnable() {
  60. @Override
  61. public void run() {
  62. System.out.println("3000");
  63. }
  64. }, 3000);
  65. timer.schedule(new Runnable() {
  66. @Override
  67. public void run() {
  68. System.out.println("2000");
  69. }
  70. }, 2000);
  71. timer.schedule(new Runnable() {
  72. @Override
  73. public void run() {
  74. System.out.println("1000");
  75. }
  76. }, 1000);
  77. System.out.println("程序开始执行");
  78. }
  79. }
线程池
线程池最大的好处就是减少每次启动、销毁线程的损耗。
标准库中的线程池
使用 Executors.newFixedThreadPool(4) 能创建出固定包含 4 个线程的线程池. 
返回值类型为 ExecutorService
通过 ExecutorService.submit 可以注册一个任务到线程池中.

代码示例

  1. import java.util.concurrent.ExecutorService;
  2. import java.util.concurrent.Executors;
  3. public class Demo22 {
  4. public static void main(String[] args) {
  5. ExecutorService service= Executors.newFixedThreadPool(4);
  6. service.submit(new Runnable() {
  7. @Override
  8. public void run() {
  9. System.out.println("hello");
  10. }
  11. });
  12. }
  13. }

 运行结果

Executors 创建线程池的几种方式

newFixedThreadPool: 创建固定线程数的线程池
newCachedThreadPool: 创建线程数目动态增长的线程池.
newSingleThreadExecutor: 创建只包含单个线程的线程池. 
newScheduledThreadPool: 设定 延迟时间后执行命令,或者定期执行命令. 是进阶版的 Timer

Executors 本质上是 ThreadPoolExecutor 类的封装. 

实现线程池

  1. import java.util.concurrent.ArrayBlockingQueue;
  2. import java.util.concurrent.BlockingQueue;
  3. class MyThreadPool{
  4. private BlockingQueue<Runnable> queue=new ArrayBlockingQueue<>(1000);
  5. public void submit(Runnable runnable) throws InterruptedException {
  6. queue.put(runnable);
  7. }
  8. public MyThreadPool(int n){
  9. for (int i = 0; i < n; i++) {
  10. Thread t=new Thread(()->{
  11. Runnable runnable= null;
  12. try {
  13. runnable = queue.take();
  14. } catch (InterruptedException e) {
  15. throw new RuntimeException(e);
  16. }
  17. runnable.run();
  18. });
  19. t.start();
  20. }
  21. }
  22. }
  23. public class Demo23 {
  24. public static void main(String[] args) throws InterruptedException {
  25. MyThreadPool myThreadPool=new MyThreadPool(4);
  26. for (int i = 0; i < 1000; i++) {
  27. int id=i;
  28. myThreadPool.submit(new Runnable() {
  29. @Override
  30. public void run() {
  31. System.out.println("执行任务:"+id);
  32. }
  33. });
  34. }
  35. }
  36. }

运行结果

线程池的优点

1.减少资源消耗:通过重用已存在的线程,线程池避免了线程创建和销毁所带来的开销。线程创建和销毁是昂贵的操作,因为它们涉及到系统资源的分配和释放。使用线程池可以显著减少这些开销,提高系统的资源利用率。
2.提高响应速度:由于线程池中的线程是预先创建好的,当有新任务到来时,可以立即分配线程去执行,而不需要等待新线程的创建。这可以显著提高系统的响应速度,尤其是在高并发场景下。
3.提高线程的可管理性:线程池提供了一种集中管理线程的方式,包括线程的创建、销毁、调度等。通过线程池,开发者可以更容易地控制系统中线程的数量,避免创建过多的线程导致系统资源耗尽。
4.提供灵活的配置选项:大多数线程池实现都提供了丰富的配置选项,如线程池的大小、任务的队列类型、拒绝策略等。这些配置选项使得开发者可以根据应用程序的具体需求来优化线程池的性能。
5.简化并发编程:线程池隐藏了线程管理的复杂性,使得开发者可以更加专注于业务逻辑的实现,而不是线程的管理。这简化了并发编程的难度,降低了出错的可能性。
6.支持并发任务的执行:线程池可以同时执行多个任务,提高了系统的并发处理能力。这对于需要处理大量并发请求的应用程序来说是非常重要的。
7.提供任务调度功能:一些高级的线程池实现还提供了任务调度的功能,允许开发者按照特定的策略(如定时、周期性等)来执行任务。这进一步增强了线程池的灵活性和功能。

ThreadPoolExecutor的构造方法

 上图中最后一个构造函数功能最多,以这个为介绍对象:

corePoolSize:核心线程数

maximumPoolSize:最大线程数

线程池里面的线程数目:[corePoolSize,maximumPoolSize]

keepAlive:允许线程最大的存活时间

unit:时间单位

workQueue:阻塞队列,用来存放线程池中的任务

threadFactory:工厂模式

handler:拒绝策略



所属网站分类: 技术文章 > 博客

作者:coding

链接:http://www.javaheidong.com/blog/article/691565/a5ddbd02eb08c9e00bdf/

来源:java黑洞网

任何形式的转载都请注明出处,如有侵权 一经发现 必将追究其法律责任

3 0
收藏该文
已收藏

评论内容:(最多支持255个字符)