PHP private
写了一段时候PHP,回过头来在看PHP.感觉还是有很多地方不明白.
今天在看到private的时候遇到一个小问题, 就发个帖子请教一下大家!
<?php class Father { protected $name = 'Father'; public function getName() { return $this->name; } } class Son extends Father { protected $name = 'Son'; } $son = new Son(); echo $son->getName(); //返回的是Son
另一种情况
<?php class Father { private $name = 'Father'; public function getName() { return $this->name; } } class Son extends Father { protected $name = 'Son'; } $son = new Son(); echo $son->getName(); //返回的确实father
这里就有一个问题, php对象属性的值, 在程序运行的过程中是怎么确定的!
有什么规则,或者说是一个怎么样的访问过程!
回复内容:
写了一段时候PHP,回过头来在看PHP.感觉还是有很多地方不明白.
今天在看到private的时候遇到一个小问题, 就发个帖子请教一下大家!
<?php class Father { protected $name = 'Father'; public function getName() { return $this->name; } } class Son extends Father { protected $name = 'Son'; } $son = new Son(); echo $son->getName(); //返回的是Son
另一种情况
<?php class Father { private $name = 'Father'; public function getName() { return $this->name; } } class Son extends Father { protected $name = 'Son'; } $son = new Son(); echo $son->getName(); //返回的确实father
这里就有一个问题, php对象属性的值, 在程序运行的过程中是怎么确定的!
有什么规则,或者说是一个怎么样的访问过程!
我来说说我的看法。
getName
是一个 public
方法,那么 Son
类会继承 Father
类的这个方法,这一点没有疑问,对吧。
那么先看看第一段代码的执行思路。
Son
类实例化之后,执行 getName
方法。由于这个方法是从 Father
类继承而来的,所以实际上这个方法访问的是 Father
类的 $name
这个属性。第一段代码里 $name
是 protected
类型的,在子类中这个属性被继承下来并被改写,那么 getName
就会继续去查找子类里的这个属性。
而在第二段代码的里,$name
属性已经被定义成 private
类型,所以在子类执行 getName
方法时,会先查找父类里的 $name
属性。这时候 $name
是无法被继承的,所以就返回了父类的值。
不知道我这样描述的是否详细,能让题主理解?
以往的工程里,我写的类访问级别只到 protected
,从来不用 private
,我觉得这样更符合面向对象的思想。
你试试看这个 https://segmentfault.com/q/1010000000133607
是不是你的也有警告提示但是因为设置的原因没有显示出来呢?
按说父类声明了 private $attr的话子类可以 private $attr,但是不能 protected $attr 或者 public $attr,否则会很混乱,类似的例子 父类 protected $attr;子类 public $attr;那返回哪个。
我发现黑客新想法的最佳来源,并非是名字里有“计算机”三个字的领域,而是来自于其他的创作领域 --《黑客与画家》21页
既然已经面向对象了,那么对象
这个词也肯定也不是空穴来风,话说世界万物皆对象,也不知道当初提出面向对象的人脑子里想的是谁家的对象。这个面向对象的概念大到了保持对整个世界的同理心!!!
你看看提出面向对象的人,都有这么高的Bigger。那我们学习面向对象,也至少不应该只局限在编程里。
说道爹,就应该好好唠一唠,这个是一个拼爹的时代。
我爹在前门有套房,我爹的媳妇我叫娘,我爹外号叫光头强。
<code>class Father { private $fatherHouse = '我爹在前门的四合院,房产证上只写着爹的名字'; protected $fatherWife = "我爹的媳妇"; public $nickname = "光头强"; public function whereFatherHouse(){ echo $this->fatherHouse; } public function callFatherWife(){ echo $this->fatherWife; } }</code>
说到我啊,他们制造我的时候是这个样子
<code>class Me extends Father { protected $fatherWife = '娘'; } $me = new Me();</code>
我爹在前门有套房
<code>$me->whereFatherHouse(); </code>
我爹的媳妇我叫娘
<code>$me->callFatherWife();</code>
我的外号叫夜夜强
<code>$me->nickname = '夜夜强';</code>
共有 谁都能给你起个外号,约束不了
私有 爹的房子,你始终改不成你的,只能炫耀下。
保护 家族中的一个属性
第一个父类name被重写了,所以就只有一个name。
第二个父类name没有被重写,所以调用父类的私有属性。

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

In this chapter, we will understand the Environment Variables, General Configuration, Database Configuration and Email Configuration in CakePHP.

PHP 8.4 brings several new features, security improvements, and performance improvements with healthy amounts of feature deprecations and removals. This guide explains how to install PHP 8.4 or upgrade to PHP 8.4 on Ubuntu, Debian, or their derivati

To work with date and time in cakephp4, we are going to make use of the available FrozenTime class.

To work on file upload we are going to use the form helper. Here, is an example for file upload.

In this chapter, we are going to learn the following topics related to routing ?

CakePHP is an open-source framework for PHP. It is intended to make developing, deploying and maintaining applications much easier. CakePHP is based on a MVC-like architecture that is both powerful and easy to grasp. Models, Views, and Controllers gu

Validator can be created by adding the following two lines in the controller.

Visual Studio Code, also known as VS Code, is a free source code editor — or integrated development environment (IDE) — available for all major operating systems. With a large collection of extensions for many programming languages, VS Code can be c
