欢迎来到尧图网

客户服务 关于我们

您的位置:首页 > 房产 > 家装 > 单例模式场景模拟和问题解决

单例模式场景模拟和问题解决

2024/10/24 3:23:05 来源:https://blog.csdn.net/weixin_43349479/article/details/140372982  浏览:    关键词:单例模式场景模拟和问题解决

饿汉式单例

private static Student student = new Student();

不存在线程安全问题

懒汉式单例

线程安全问题

package org.example.Singleton;import java.util.concurrent.CountDownLatch;
import java.util.concurrent.ExecutorService;
import java.util.concurrent.Executors;
import java.util.concurrent.atomic.AtomicInteger;public class SingletonTest {private static Student student = new Student();private static Car car = null;private static AtomicInteger count = new AtomicInteger(0);private static ExecutorService threadPoolExecutor = Executors.newCachedThreadPool();private static final CountDownLatch latch = new CountDownLatch(15);SingletonTest() throws InterruptedException {threadNonSafeLoad();}public static void main(String[] args) throws InterruptedException {loadInstance();latch.await();System.out.println(count.get());}private static void threadSafeLoad() {}private void threadNonSafeLoad() {//        System.out.println(this.car);if (this.car == null) {count.addAndGet(1);this.car = new Car();}latch.countDown();}private static void loadInstance() {for (int i = 0; i < 15; i++) {
//            Thread.sleep(50);Thread thread = new Thread(() -> {try {new SingletonTest();} catch (InterruptedException e) {throw new RuntimeException(e);}});threadPoolExecutor.execute(thread);}}
}class Student {private String name;
}class Car {private String name;
}

运行结果:

会多次创建`Car`对象
1~15

解决方法-双重判断

    private void threadSafeLoad() {if (this.car == null) {// 避免每次都加锁进行判断synchronized (SingletonTest.class) {if (this.car == null) {count.addAndGet(1);this.car = new Car();}}}latch.countDown();}
    SingletonTest() throws InterruptedException {
//        threadNonSafeLoad();threadSafeLoad();}

运行结果:

1

版权声明:

本网仅为发布的内容提供存储空间,不对发表、转载的内容提供任何形式的保证。凡本网注明“来源:XXX网络”的作品,均转载自其它媒体,著作权归作者所有,商业转载请联系作者获得授权,非商业转载请注明出处。

我们尊重并感谢每一位作者,均已注明文章来源和作者。如因作品内容、版权或其它问题,请及时与我们联系,联系邮箱:809451989@qq.com,投稿邮箱:809451989@qq.com