单例

作者: Taleen_6f6a | 来源:发表于2019-10-11 14:07 被阅读0次

    private static volatile $NAME$ singleton = null;

    private $NAME$() {}

    public static $NAME$ getInstance() {

        if (singleton == null) {

            synchronized ($NAME$.class) {

                if (singleton == null) {

                    singleton = new $NAME$();

                }

            }

        }

        return singleton;

    }

    相关文章

      网友评论

          本文标题:单例

          本文链接:https://www.haomeiwen.com/subject/qybtmctx.html