饿汉式
饿汉式的代码很简单也不是我们的重点。
package singleton_k;/* * @auther 顶风少年 * @mail dfsn19970313@foxmail.com * @date 2020-01-15 20:41 * @notify * @version 1.0 */ public class Computer { private Computer() { } private static Computer computer = new Computer(); public static Computer getInstance() { return computer; } }