DSP

单例模式(防继承,防克隆)

2019-07-13 18:43发布

'; // $s1 = new A(); // $s2 = new A(); // if ($s1 === $s2) { // echo '是同一个对象'; // }else{ // echo '不是同一个对象'; // } // //5.防止继承时被修改了权限 // class singleton{ // protected static $ins = null; // //方法加final则方法不能被覆盖,类加final则类不能被继承 // final private function __construct(){} // public static function getIns(){ // if (self::$ins === null) { // self::$ins = new self(); // } // return self::$ins; // } // } // $s1 = singleton::getIns(); // $s2 = singleton::getIns(); // if ($s1 === $s2) { // echo '是同一个对象'; // }else{ // echo '不是同一个对象'; // } // //继承 // // class A extends singleton{ // // public function __construct(){} // // } // //Cannot override final method singleton::__construct() // echo '
'; // $s1 = singleton::getIns(); // $s2 = clone $s1; // if ($s1 === $s2) { // echo '是同一个对象'; // }else{ // echo '不是同一个对象'; // } //6.防止被clone class singleton{ protected static $ins = null; //方法加final则方法不能被覆盖,类加final则类不能被继承 final private function __construct(){} public static function getIns(){ if (self::$ins === null) { self::$ins = new self(); } return self::$ins; } // 封锁clone final private function __clone(){} } $s1 = singleton::getIns(); $s2 = clone $s1; //Call to private singleton::__clone() from context if ($s1 === $s2) { echo '是同一个对象'; }else{ echo '不是同一个对象'; }