关于一小段代码的解析,该如何解决

WBOY
Release: 2016-06-13 13:25:19
Original
884 people have browsed it

关于一小段代码的解析
class xxxx{
  public function &instance()
{
static $_instance = NULL;
if($_instance === NULL)
$_instance = new VService();
return $_instance;
}

  }

  这样设计有什么好处呢?第一次实例化一个对象后,第二次实例化会提高性能吗


------解决方案--------------------

PHP code
class VService {
  private static $_Instance;
  private function __clone() {}
  private function __construct() {}
  public static function getInstance() {
    if(empty(self::$_Instance)) self::$_Instance = new self();
    return self::$_Instance;
  }
} <div class="clear">
                 
              
              
        
            </div>
Copy after login
Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!