首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 网站开发 > PHP >

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

2012-07-15 
关于一小段代码的解析class xxxx{public function &instance(){static $_instance NULLif($_instance

关于一小段代码的解析
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;  }} 

热点排行