0
在編程中調用這個概念是什麼?特別是構造函數中的位。我想有一個期限谷歌。這個概念叫什麼?
<?PHP
class Foo{
private $bar;
function __construct(){
**$a = new Foo();
$a->setBar("Do I ever get printed?");
$this = $a;**
}
function setBar($a){
$this->bar = $a;
}
function getBar(){
return $this->bar
}
}
?>
<?PHP
$z = new Foo();
echo $z->getBar();
?>
哈哈。我想我應該多想一點。我試圖想出一個用於瘋狂的想法,想到的第一件事就是創建一個遵循可遞歸描述的模式的對象。例如:描述斐波那契數列的(x,y)座標。 – Jake 2012-03-03 16:00:18