<?php /** * Created by PhpStorm. * User: siyu.wang * Date: 2017/9/26 * Time: 14:36 */ /** * final 修饰的方法不可以被重写 * 不可以修饰属性 */ class person{ public $age = 23; final public function getAge(){ return $this->age; } } class stu extends person{ // public function getAge(){ // return $this->age; // } } $n = new stu(); echo $n->getAge();