亚洲国产日韩欧美一区二区三区,精品亚洲国产成人av在线,国产99视频精品免视看7,99国产精品久久久久久久成人热,欧美日韩亚洲国产综合乱

數(shù)據(jù)庫單例模式

原創(chuàng) 2019-04-05 14:10:24 309
摘要:<?phpclass Db()       {//私有的靜態(tài)變量用于存儲實例對象            private static $instance=null;//s私有化構(gòu)造函數(shù),不能在類外部new實例化           

<?php

class Db()

       {

//私有的靜態(tài)變量用于存儲實例對象

            private static $instance=null;

//s私有化構(gòu)造函數(shù),不能在類外部new實例化

            private function __construct(){}

//外部實例化接口

           public static function  getInstance()

{

if(is_null(static::$instance))

{

static::$instance=new static();

}

return static::$instance

}

       }


?>

批改老師:西門大官人批改時間:2019-04-08 09:51:30
老師總結(jié):設計模式通常都有固定的寫法,記住各常見設計模式的寫法和其適用場景后,可以寫出質(zhì)量更高的代碼

發(fā)佈手記

熱門詞條