写点什么

架构师训练营第三周作业 1

用户头像
韩儿
关注
发布于: 2020 年 11 月 08 日

作业 1.手写一个单例模式的实现例子。

public class Singleton{

private Singleton(){}

private static Singleton instance= new Singleton();

public static Singleton getInstance(){

return instance;

}

}



用户头像

韩儿

关注

还未添加个人签名 2020.03.08 加入

还未添加个人简介

评论

发布
暂无评论
架构师训练营第三周作业1