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

如果在

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

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

phpcn_u233
phpcn_u233

Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!