我在
PHP中有一个包含许多方法和变量的类.每当我需要一个方法来调用同一个类中的另一个时,我必须添加$this->.这个(!)会产生一些非常易读的来源,例如:
原文链接:https://www.f2er.com/php/240184.html$nextX = $this->calculateNextX($this->DX,$this->DY,$this->DZ); $nextY = $this->calculateNextY($this->DX,$this->DZ); $nextZ = $this->calculateNextZ($this->DX,$this->DZ); $this->X = $nextX; $this->Y = $nextY; $this->Z = $nextZ;
有没有办法避免$this->到处?