题解 | #创建单例对象#

创建单例对象

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 = new Singleton();

    private Singleton() {

    }

    //write your code here......
    // public static Singleton getInstance(){
    //     if(instance == null){
    //         instance = new Singleton();
    //     }
    //     return instance;
    // }
    public static Singleton getInstance(){
        return instance;
    }

}

全部评论

相关推荐

投票
我要狠拿offer:如果不是必须去成都绝对选九院呀,九院在四川top1研究所了吧
点赞 评论 收藏
分享
HNU_fsq:建议直接出国,这简历太6了。自愧不如
点赞 评论 收藏
分享
点赞 收藏 评论
分享
牛客网
牛客企业服务