我是一个 PHP 菜鸟,当我阅读一些 joomla 模块的 PHP 文件并尝试学习时,我遇到了这个:
class RokSprocket_Item
{
protected $text;
public function setText($introtext)
{
$this->text = $introtext;
}
public function getText()
{
return $this->text;
}
}
我的问题是,既然函数getText()
只是返回$this->text
而没有其他任何东西,为什么要使用它?在我看来$this->getText()
可以完全替换为$this->text
.