php抽象类和接口的区别
2020-10-13 本文已影响0人
捏帅
````
abstract class AbstractClass {
// 强制要求子类定义这些方法,且不能定义具体功能 注意没有大括号
abstract protected function getValue()
abstract protected function prefixValue($prefix);
// 普通方法(非抽象方法)
public function printOut(){
print $this->getValue()."\n";
}
}
````