题解 | #创建单例对象#

创建单例对象

https://www.nowcoder.com/practice/9b316cd2d6264776918bc4bc31f37aec

public class Main {

    public static void main(String[] args) {
        Singleton s1 = Singleton.getInstance();
        Singleton s2 = Singleton.getInstance();
        System.out.println(s1 == s2);
    }

}

class Singleton {

    private static Singleton instance;

    private Singleton() {

    }

    //write your code here......
      public static synchronized Singleton getInstance() {
            return instance;
    }

}

全部评论

相关推荐

2024-12-16 18:00
已编辑
门头沟学院 Java
摆摆不摆:想年轻多拼拼赚钱就去华子,想轻松点就去media
点赞 评论 收藏
分享
2024-12-11 11:40
海南大学 Java
点赞 评论 收藏
分享
评论
点赞
收藏
分享

创作者周榜

更多
牛客网
牛客企业服务