首页 > 后端开发 > php教程 > 关于单例模式的问题~

关于单例模式的问题~

WBOY
发布: 2016-06-20 12:49:35
原创
977 人浏览过

<?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;    }
登录后复制

来源:php.cn
本站声明
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn
最新问题
热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板