美文网首页
单例模式抽象类

单例模式抽象类

作者: Super淳语 | 来源:发表于2021-07-30 16:19 被阅读0次
    
    
    abstract class Dao
    {
        /**
         * @var
         */
        protected static $instance;
    
        /**
         * Instance constructor.
         */
        private function __construct()
        {
        }
    
        /**
         * @return mixed
         */
        public static function GetInstance()
        {
            if (!static::$instance) {
                static:: $instance = new static();
            }
            return static::$instance;
        }
    
    }
    
    

    相关文章

      网友评论

          本文标题:单例模式抽象类

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