>  기사  >  백엔드 개발  >  关于单例模式的问题~

关于单例模式的问题~

WBOY
WBOY원래의
2016-06-20 12:49:35960검색

<?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으로 문의하세요.