search

Home  >  Q&A  >  body text

return 在什么时候用到?

如果在

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

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

phpcn_u233phpcn_u2332937 days ago1061

reply all(2)I'll reply

  • 数据分析师

    数据分析师2017-09-30 23:46:14

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

    Please watch and learn.

    reply
    0
  • 阿神

    阿神2016-12-24 17:13:41

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

    reply
    0
  • Cancelreply