首頁  >  文章  >  後端開發  >  关于单例模式的问题~

关于单例模式的问题~

WBOY
WBOY原創
2016-06-20 12:49:35962瀏覽

<?php/** * Created by PhpStorm. * User: Administrator * Date: 2015/8/30 * Time: 12:53 */class Singleton{    private static $instance = null;    private function __construct($name){        $this->name = $name;    }    public static function getInstance(){        if(self::$instance==null){            return new Singleton("");        }        return self::$instance;    }    public function printString(){        echo "hello,this is printString()"."<br/>";    }    public function setName($name){        $this->name = $name;    }    public function getName(){        echo "The name is ".$this->name."<br/>";    }}$class = Singleton::getInstance();$class->printString();$class->setName("jack");$class->getName();$class2 = Singleton::getInstance();$class2->getName();


为何 $class2->getName() 输出的 name 也为空呢?


回复讨论(解决方案)

return new Singleton(""):
应为
self::$instance = new Singleton(""):

如果 return new Singleton(""): 的话就直接返回了另一个实例
就不是单例模式了

<?php/** * Created by PhpStorm. * User: Administrator * Date: 2015/8/30 * Time: 12:53 */class Singleton{    private static $instance = null;    private function __construct($name){        $this->name = $name;    }    public static function getInstance(){        if(self::$instance==null){            return new Singleton("");        }        return self::$instance;    }    public function printString(){        echo "hello,this is printString()"."<br/>";    }    public function setName($name){        $this->name = $name;    }    public function getName(){        echo "The name is ".$this->name."<br/>";    }}$class = Singleton::getInstance();$class->printString();$class->setName("jack");$class->getName();$class2 = Singleton::getInstance();$class2->getName();


为何 $class2->getName() 输出的 name 也为空呢?


 谢谢楼上~

只要改一处代码即可:你忘了把单例放入$instance

    public static function getInstance(){        if(self::$instance==null){            self::$instance= new Singleton("");        }        return self::$instance;    }

陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn