Home > Backend Development > PHP Tutorial > 一个简单的php程序,输出结果不对,有点困扰

一个简单的php程序,输出结果不对,有点困扰

WBOY
Release: 2016-06-23 13:30:57
Original
1042 people have browsed it

 abstract class Animal{
   protected $_speed;
  abstract protected function move();
 }
  class Horse extends Animal{
  public function _construct($speed){
  $this->_speed = $speed;
  }
  public function move(){
  echo '马在奔驰->';
  echo '速度为:'. $this->_speed. "米/秒";
  }
  }
  $horse=new Horse(25);
 
  $horse->move();
   
?>
#######
输出结果为:马在奔驰->速度:米/秒   数字不晓得哪儿去了。。。。。说明构造函数有问题  可是问题在哪儿啊?


回复讨论(解决方案)

都知道 构造函数有问题 了,为什么不认真检查一下呢?
_construct 应为
__construct
是两个下划线,而不是一个

马在奔驰->速度为:25米/秒

谢谢!第一次知道   原来是两个下划线,唉。。。。

source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template