这段代码为何会输出father?
<code><?php class father { public function __construct() { $this->init(); } private function init() { echo "father\n"; } } class son extends father { public function init() { echo "son\n"; } } $son = new son(); </code>
回复内容:
<code><?php class father { public function __construct() { $this->init(); } private function init() { echo "father\n"; } } class son extends father { public function init() { echo "son\n"; } } $son = new son(); </code>
因为son里的init方法是public,而father的init方法是private,这个其实表示你son里的init方法并没有重写父类里的方法。那自然调用的仍然是父类自己的实现了
<code>$son.init(); // son </code>
<code>php</code><code><br>class father { public function __construct() { // $this->init(); static::init();//php5.6 } private function init() { echo "father\n"; } } class son extends father { /*public function __construct() { $this->init(); }*/ public function init() { echo "son\n"; } } </code>
后期静态绑定
Reference: http://docs.php.net/manual/en/language.oop5.late-static-bindings.php
Note:
In non-static contexts, the called class will be the class of the object instance. Since$this->
will try to call private methods from the same scope, using static:: may give different results. Another difference is that static:: can only refer to static properties.
<code>class father { public function __construct() { $this->init(); } private function init() { echo "father\n"; } } class son extends father { public function __construct() { parent::__construct(); $this->init(); } private function init() { echo "son\n"; } } new son(); </code>
输出
<code>father son </code>
建议查看__construct基础知识,想告诉楼主踏实一点,我就不信你弄清了里面的方法还会来问
授之以渔
private方法无法被重写
father中的init如果是public或protected,那么是会输出son;但是现在是private,所以在father中调用init是不会输出son的,而是调father的int输出father。

热AI工具

Undresser.AI Undress
人工智能驱动的应用程序,用于创建逼真的裸体照片

AI Clothes Remover
用于从照片中去除衣服的在线人工智能工具。

Undress AI Tool
免费脱衣服图片

Clothoff.io
AI脱衣机

AI Hentai Generator
免费生成ai无尽的。

热门文章

热工具

记事本++7.3.1
好用且免费的代码编辑器

SublimeText3汉化版
中文版,非常好用

禅工作室 13.0.1
功能强大的PHP集成开发环境

Dreamweaver CS6
视觉化网页开发工具

SublimeText3 Mac版
神级代码编辑软件(SublimeText3)

PHP 8.4 带来了多项新功能、安全性改进和性能改进,同时弃用和删除了大量功能。 本指南介绍了如何在 Ubuntu、Debian 或其衍生版本上安装 PHP 8.4 或升级到 PHP 8.4

CakePHP 是 PHP 的开源框架。它的目的是使应用程序的开发、部署和维护变得更加容易。 CakePHP 基于类似 MVC 的架构,功能强大且易于掌握。模型、视图和控制器 gu

Visual Studio Code,也称为 VS Code,是一个免费的源代码编辑器 - 或集成开发环境 (IDE) - 可用于所有主要操作系统。 VS Code 拥有针对多种编程语言的大量扩展,可以轻松编写
