Table of Contents
回复内容:

PHP private

Jun 06, 2016 pm 08:13 PM
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 
Copy after login
Copy after login

另一种情况

<?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
Copy after login
Copy after login

这里就有一个问题, 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 
Copy after login
Copy after login

另一种情况

<?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
Copy after login
Copy after login

这里就有一个问题, php对象属性的值, 在程序运行的过程中是怎么确定的!
有什么规则,或者说是一个怎么样的访问过程!

我来说说我的看法。

getName 是一个 public 方法,那么 Son 类会继承 Father 类的这个方法,这一点没有疑问,对吧。

那么先看看第一段代码的执行思路。

Son 类实例化之后,执行 getName 方法。由于这个方法是从 Father 类继承而来的,所以实际上这个方法访问的是 Father 类的 $name 这个属性。第一段代码里 $nameprotected 类型的,在子类中这个属性被继承下来并被改写,那么 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>
Copy after login

说到我啊,他们制造我的时候是这个样子

<code>class Me extends Father {
    protected $fatherWife = '娘';
}
$me = new Me();</code>
Copy after login

我爹在前门有套房

<code>$me->whereFatherHouse(); </code>
Copy after login

我爹的媳妇我叫娘

<code>$me->callFatherWife();</code>
Copy after login

我的外号叫夜夜强

<code>$me->nickname = '夜夜强';</code>
Copy after login

共有 谁都能给你起个外号,约束不了
私有 爹的房子,你始终改不成你的,只能炫耀下。
保护 家族中的一个属性

第一个父类name被重写了,所以就只有一个name。
第二个父类name没有被重写,所以调用父类的私有属性。

Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

Repo: How To Revive Teammates
1 months ago By 尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
1 months ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

CakePHP Project Configuration CakePHP Project Configuration Sep 10, 2024 pm 05:25 PM

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

PHP 8.4 Installation and Upgrade guide for Ubuntu and Debian PHP 8.4 Installation and Upgrade guide for Ubuntu and Debian Dec 24, 2024 pm 04:42 PM

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

CakePHP Date and Time CakePHP Date and Time Sep 10, 2024 pm 05:27 PM

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

CakePHP File upload CakePHP File upload Sep 10, 2024 pm 05:27 PM

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

CakePHP Routing CakePHP Routing Sep 10, 2024 pm 05:25 PM

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

Discuss CakePHP Discuss CakePHP Sep 10, 2024 pm 05:28 PM

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

CakePHP Creating Validators CakePHP Creating Validators Sep 10, 2024 pm 05:26 PM

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

How To Set Up Visual Studio Code (VS Code) for PHP Development How To Set Up Visual Studio Code (VS Code) for PHP Development Dec 20, 2024 am 11:31 AM

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

See all articles