Singleton::getInstance 既没被继承,也没被调用,那么cache是如何得到 它的实例的呢?$this->_handle = new StdClass(); 按我理解就是创建了一个空的对象,具体实现也无法明白
<?php
class Singleton
{
private static $_instances = array();
protected function __construct()
{
}
final public function __clone()
{
trigger_error("clone method is not allowed.", E_USER_ERROR);
}
final public static function getInstance()
{
$c = get_called_class();
if(!isset(self::$_instances[$c])) {
self::$_instances[$c] = new $c;
}
return self::$_instances[$c];
}
}
class Cache Extends Singleton
{
private $_handle = null;
protected function __construct()
{
$this->_connect();
}
private function _connect()
{
$this->_handle = new StdClass();
}
public function getHandle()
{
return $this->_handle;
}
}
这是一个专为移动设备优化的页面(即为了让你能够在 Google 搜索结果里秒开这个页面),如果你希望参与 V2EX 社区的讨论,你可以继续到 V2EX 上打开本讨论主题的完整版本。
V2EX 是创意工作者们的社区,是一个分享自己正在做的有趣事物、交流想法,可以遇见新朋友甚至新机会的地方。
V2EX is a community of developers, designers and creative people.