A Deep Dive into Inheritance of PHP Classes_PHP Tutorial
This is just like humans having children (why must they have children? Is it just to prevent old age! I don’t know), you put Take some of your own genes and some of your wife's genes to create a new individual. This new personality will definitely contain the characteristics of both of you. This is a biological explanation of heredity (inheritance). In the world of programming, inheritance is inheritance!
First of all, after understanding some living principles of inheritance, I would like to see if the inheritance of PHP classes is no longer so mysterious. Perhaps it is not mysterious in the first place because we ourselves are too complicated. In order to have inheritance, there must be a "root". For this "root", you may imagine that if you give birth to a son or daughter in the future, they will get some "things (properties and methods)" from you, so that your "descendants" will continue to inherit. Has all the characteristics of your (roots). Let's describe how this is expressed in PHP's object-oriented language through grammar (it can't be as direct as humans, get married, and your offspring will be produced after a while)
1. Generate "roots" Class (parent class or base class)
Syntax: class father{
}
1. Generate "descendants" (subclasses)
Syntax: class son extends father{
}
Explanation: The parent class is just an ordinary class. If you want to have descendants, you only need to add it to the ordinary class Just add the extends keyword at the end, so that your subclass only has all the properties and methods of the parent class. It's actually that simple.
Let’s do something practical. After all, defining a parent class and subclass in PHP class inheritance is to complete a certain task! The task here is relatively monotonous. Take people as an example. People have names (attributes) and they have to sleep and eat (methods). Let's use this basic task to complete the knowledge in this section.
<ol class="dp-xml"> <li class="alt"><span><span class="tag"><</span><span> ?php </span></span></li><li><span>class father{ </span></li><li class="alt"><span>protected $name; </span></li><li><span>function __construct($name){ </span></li><li class="alt"><span>$this-</span><span class="tag">></span><span class="attribute">name</span><span>=$name; </span></span></li> <li><span>} </span></li> <li class="alt"><span>function __destruct(){ </span></li> <li> <span>echo "</span><span class="tag"><</span><span> </span><span class="tag-name">p</span><span class="tag">></span><span>{$this-</span><span class="tag">></span><span>name}也是要死的</span><span class="tag"><</span><span> </span><span class="tag-name">br</span><span class="tag">/></span><span class="tag"><</span><span> /p</span><span class="tag">></span><span>"; </span> </li> <li class="alt"><span>} </span></li> <li><span>//这个就是所谓的构造函数,用来初始化 </span></li> <li class="alt"><span>function go_to_sleeping(){ </span></li> <li> <span>echo "</span><span class="tag"><</span><span> </span><span class="tag-name">p</span><span class="tag">></span><span>{$this-</span><span class="tag">></span><span>name}想睡觉.</span><span class="tag"><</span><span> /p</span><span class="tag">></span><span>"; </span> </li> <li class="alt"><span>} </span></li> <li><span>function eat(){ </span></li> <li class="alt"> <span>echo "</span><span class="tag"><</span><span> </span><span class="tag-name">p</span><span class="tag">></span><span>{$this-</span><span class="tag">></span><span>name}想吃饭.</span><span class="tag"><</span><span> /p</span><span class="tag">></span><span>"; </span> </li> <li><span>} </span></li> <li class="alt"><span>} </span></li> <li><span>class son extends father{ </span></li> <li class="alt"><span>function playing(){ </span></li> <li><span>//小孩子会很调皮的,当然他也是要吃要睡的生物 </span></li> <li class="alt"> <span>echo "</span><span class="tag"><</span><span> </span><span class="tag-name">p</span><span class="tag">></span><span>{$this-</span><span class="tag">></span><span>name}正在捣蛋...</span><span class="tag"><</span><span> /p</span><span class="tag">></span><span>"; </span> </li> <li><span>} </span></li> <li class="alt"><span>} </span></li> <li> <span>$</span><span class="attribute">your_father</span><span>=</span><span class="attribute-value">new</span><span> father("老爸"); </span> </li> <li class="alt"> <span>$your_father-</span><span class="tag">></span><span>go_to_sleeping(); </span> </li> <li> <span>$your_father-</span><span class="tag">></span><span>eat(); </span> </li> <li class="alt"> <span>$</span><span class="attribute">my_son</span><span>=</span><span class="attribute-value">new</span><span> son('宝贝'); </span> </li> <li> <span>$my_son-</span><span class="tag">></span><span>go_to_sleeping(); </span> </li> <li class="alt"> <span>$my_son-</span><span class="tag">></span><span>eat(); </span> </li> <li> <span>$my_son-</span><span class="tag">></span><span>playing(); </span> </li> <li class="alt"> <span class="tag">?></span><span> </span> </li> <li> <span class="tag"><</span><span> ?php </span></li><li class="alt"><span>class father{ </span></li><li><span>protected $name; </span></li><li class="alt"><span>function __construct($name){ </span></li><li><span>$this-</span><span class="tag">></span><span class="attribute">name</span><span>=$name; </span> </li> <li class="alt"><span>} </span></li> <li><span>function __destruct(){ </span></li> <li class="alt"> <span>echo "</span><span class="tag"><</span><span> </span><span class="tag-name">p</span><span class="tag">></span><span>{$this-</span><span class="tag">></span><span>name}也是要死的</span><span class="tag"><</span><span> </span><span class="tag-name">br</span><span class="tag">/></span><span class="tag"><</span><span> /p</span><span class="tag">></span><span>"; </span> </li> <li><span>} </span></li> <li class="alt"><span>//这个就是所谓的构造函数,用来初始化 </span></li> <li><span>function go_to_sleeping(){ </span></li> <li class="alt"> <span>echo "</span><span class="tag"><</span><span> </span><span class="tag-name">p</span><span class="tag">></span><span>{$this-</span><span class="tag">></span><span>name}想睡觉.</span><span class="tag"><</span><span> /p</span><span class="tag">></span><span>"; </span> </li> <li><span>} </span></li> <li class="alt"><span>function eat(){ </span></li> <li> <span>echo "</span><span class="tag"><</span><span class="tag-name">p</span><span class="tag">></span><span>{$this-</span><span class="tag">></span><span>name}想吃饭.</span><span class="tag"></</span><span class="tag-name">p</span><span class="tag">></span><span>"; </span> </li> <li class="alt"><span>} </span></li> <li><span>} </span></li> <li class="alt"><span>class son extends father{ </span></li> <li><span>function playing(){ </span></li> <li class="alt"><span>//小孩子会很调皮的,当然他也是要吃要睡的生物 </span></li> <li> <span>echo "</span><span class="tag"><</span><span> </span><span class="tag-name">p</span><span class="tag">></span><span>{$this-</span><span class="tag">></span><span>name}正在捣蛋...</span><span class="tag"><</span><span> /p</span><span class="tag">></span><span>"; </span> </li> <li class="alt"><span>} </span></li> <li><span>} </span></li> <li class="alt"> <span>$</span><span class="attribute">your_father</span><span>=</span><span class="attribute-value">new</span><span> father("老爸"); </span> </li> <li> <span>$your_father-</span><span class="tag">></span><span>go_to_sleeping(); </span> </li> <li class="alt"> <span>$your_father-</span><span class="tag">></span><span>eat(); </span> </li> <li> <span>$</span><span class="attribute">my_son</span><span>=</span><span class="attribute-value">new</span><span> son('宝贝'); </span> </li> <li class="alt"> <span>$my_son-</span><span class="tag">></span><span>go_to_sleeping(); </span> </li> <li> <span>$my_son-</span><span class="tag">></span><span>eat(); </span> </li> <li class="alt"> <span>$my_son-</span><span class="tag">></span><span>playing(); </span> </li> <li> <span class="tag">?></span><span> </span> </li> </ol>
Analysis: In our first example of using inheritance, we use the constructor mentioned in the PHP constructor and the keywords in the PHP class encapsulation. If you don’t understand anything, Go check it out! I don’t want to say any more. I didn’t want to sleep at noon. Let’s talk about this little program.
In the father of the class, we define general features, such as the person’s name, what the person needs to eat and sleep, and then in its subclass (descendant) we define a personalized method (playing), After all, there are differences between people. We use the constructor to initialize the name, and of course we use the destructor to "destroy" the object. But you may not find that there are no constructors and destructors in the subclass, so the subclass inherits the parent All methods, otherwise how can you call $my_son->go_to_sleeping(); like this? This is the inheritance of the PHP class.

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

Static binding (static::) implements late static binding (LSB) in PHP, allowing calling classes to be referenced in static contexts rather than defining classes. 1) The parsing process is performed at runtime, 2) Look up the call class in the inheritance relationship, 3) It may bring performance overhead.

What are the magic methods of PHP? PHP's magic methods include: 1.\_\_construct, used to initialize objects; 2.\_\_destruct, used to clean up resources; 3.\_\_call, handle non-existent method calls; 4.\_\_get, implement dynamic attribute access; 5.\_\_set, implement dynamic attribute settings. These methods are automatically called in certain situations, improving code flexibility and efficiency.

The difference between string printing in Go language: The difference in the effect of using Println and string() functions is in Go...

The speed of mobile XML to PDF depends on the following factors: the complexity of XML structure. Mobile hardware configuration conversion method (library, algorithm) code quality optimization methods (select efficient libraries, optimize algorithms, cache data, and utilize multi-threading). Overall, there is no absolute answer and it needs to be optimized according to the specific situation.

Go pointer syntax and addressing problems in the use of viper library When programming in Go language, it is crucial to understand the syntax and usage of pointers, especially in...

Why does map iteration in Go cause all values to become the last element? In Go language, when faced with some interview questions, you often encounter maps...

Go language slice index: Why does a single-element slice intercept from index 1 without an error? In Go language, slices are a flexible data structure that can refer to the bottom...

Modifying XML content requires programming, because it requires accurate finding of the target nodes to add, delete, modify and check. The programming language has corresponding libraries to process XML and provides APIs to perform safe, efficient and controllable operations like operating databases.
