剑指offer---单例模式

来源:互联网 发布:佰笛手风琴 淘宝 编辑:程序博客网 时间:2024/06/05 19:45

按需创建的单例模式,java实现

public class Solution {    public static Solution instance = null;    public static Solution getInstance() {        if (instance == null) {            instance = new Solution();        }        return instance;    }}
原创粉丝点击