博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
单例模式的线程安全
阅读量:6537 次
发布时间:2019-06-24

本文共 894 字,大约阅读时间需要 2 分钟。

package com.day3;public class SingleTonDemo {   public static void main(String[] args) {       SinleTonThread sinleTonThread=new SinleTonThread();       Thread thread=new Thread(sinleTonThread);       thread.start();       Thread thread2=new Thread(sinleTonThread);       thread2.start();}}class SinleTonThread  implements Runnable{    @Override    public void run() {        SingleTon.getinstance();            }    }class SingleTon{    private static SingleTon singleTon=null;    private SingleTon() {        System.out.println("单例模式");    }    public static SingleTon getinstance(){        if(singleTon==null) {            synchronized (SingleTon.class) {                if(singleTon==null) {                    singleTon=new SingleTon();                }            }            }                        return singleTon;            }}

 

转载于:https://www.cnblogs.com/tanlei-sxs/p/10023985.html

你可能感兴趣的文章