return 在什么时候用到?
phpcn_u233
phpcn_u233 2016-12-24 17:13:27
0
2
1046

如果在

class Truck extends Car{
    public function speedUp(){
        $this->speed=parent::speedUp()+50;
        return $this->speed;
    }
}

加return和不加有什么区别??

phpcn_u233
phpcn_u233

reply all(2)
数据分析师

When is return used? -PHP Chinese website Q&A-When is return used? -PHP Chinese website Q&A

Please watch and learn.

阿神

如果在一个函数中调用 return 语句,将立即结束此函数的执行并将它的参数作为函数的值返回,如果去掉return这句,次方法将会没有返回值。

Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template