开发者社区> 问答> 正文

设计模式

设计模式

展开
收起
请回答1024 2020-04-10 12:49:34 925 0
1 条回答
写回答
取消 提交回答
  • 此处延伸:Double Check的写法被要求写出来。

    单例模式:分为恶汉式和懒汉式

    恶汉式:

    public class Singleton

    {

    private static Singleton instance = new Singleton();

    public static Singleton getInstance()

    {

    return instance ; 
    

    } }

    懒汉式:

    public class Singleton02

    {

    private static Singleton02 instance;

    public static Singleton02 getInstance()

    {

    if (instance == null) 
    
    { 
    
        synchronized (Singleton02.class) 
    
        { 
    
            if (instance == null) 
    
            { 
    
                instance = new Singleton02(); 
    
            } 
    
        } 
    
    } 
    
    return instance; 
    

    } }

    2020-04-10 12:49:52
    赞同 展开评论 打赏
问答分类:
问答地址:
问答排行榜
最热
最新

相关电子书

更多
低代码开发师(初级)实战教程 立即下载
冬季实战营第三期:MySQL数据库进阶实战 立即下载
阿里巴巴DevOps 最佳实践手册 立即下载