PHP面向对象基础知识整理2

1.instanceof关键词使用

2.面向对象特性1继承,使用 extends关键词

_name;
$notecomputer->_run();

3.方法重载

_name;
$notecomputer->_run();

4.子类调用父类成员字段和方法,父类成员字段和方法要使用修饰符protected

_name;
        echo $this->_run();
    }
}

$notecomputer = new NoteComputer();
$notecomputer->getTop();

5.子类已经覆盖了父类,但是又再想调用父类的成员字段方法

_name;
$notecomputer->_run();

6.final关键字使用

如果喜欢,可以关注我,希望能认识更多志同道合的朋友。

你可能感兴趣的:(PHP面向对象基础知识整理2)