问答详情
源自:2-4 PHP类和对象之定义类的方法

为什么用静态的不对

public static function speedUp(){

     // $this->speed+=10;

     // $this->speed=speed+10;

      Car::$speed()+=10;  }

}

为什么不对啊?

提问者:qq_孤寂之旅_0 2016-08-04 22:31

个回答

  • Apple7xi
    2016-08-04 23:02:47

    多了括号,应该是self::$speed+=10;