最佳答案
我从未见过这样的代码:
public static function getInstance()
{
if ( ! isset(self::$_instance)) {
self::$_instance = new self();
}
return self::$_instance;
}
和 new className()
一样吗?
剪辑
If the class is inheritant,which class does it point to?