Home Backend Development PHP Tutorial Detailed explanation of PHP object-oriented inheritance examples

Detailed explanation of PHP object-oriented inheritance examples

Jun 30, 2017 am 09:16 AM
php object

Inheritance, as one of the three important features of Object-oriented, plays an extremely important role in the object-oriented field. It seems that I have never heard of any object-oriented language that does not support inheritance.

Inheritance of classes
Inheritance, as one of the three important features of object-oriented, plays an extremely important role in the field of object-oriented.
I don’t seem to have heard of it. Object-oriented languages ​​do not support inheritance. Inheritance is one of the important features of PHP5 object-oriented programming. It refers to creating a new derived class that inherits data and functions from one or more previously defined classes, and can be redefined or added. Enter new data and functions, thereby establishing a hierarchy or hierarchy of classes. To put it simply, inheritance is the mechanism by which child
classes automatically share the data structures and methods of the parent class. This is a relationship between classes. When defining and implementing a class
, you can do it on the basis of an existing class, use the content defined by the existing class as
's own content, and add some new content. For example, you now have a class "person". This class has
two member attributes "name and age" and two
member methods
"talking method and walking method" ", if the program now needs a student class, because students are also people, so students also have member attributes "name and age" and member methods "talking method and walking method", at this time you You can let the student class inherit this class. After inheritance, the student class will inherit all the attributes in the human being, so you don't need to redeclare these member attributes
and methods, because The student class also has the attributes of the school and the learning methods, so in the student class you make, there are
attributes and methods
inherited from humans, plus the student-specific "location" School Attributes" and "Learning Methods",
Such a student class is declared. Inheritance can also be called "extension". From the above we can see that the student
class extends human beings, On the basis of the original two attributes and two methods in human, add one attribute and one method to extend a new student class. Through the inheritance mechanism, existing
data types
can be used to define new data types. The new data type
defined not only has newly defined members, but also has old members. We call existing classes used to derive new classes as base
classes, also known as parent classes and super classes. A new class derived from an existing class is called a derived class, also called a subclass. In software development, the inheritance of classes makes the software created open and extensible. This is an effective method of organizing and classifying information. It simplifies the creation of objects and classes. workload, increasing the reproducibility of the code. Using inheritance, provides a standardized hierarchical structure of classes. Through the inheritance relationship of classes, public features can be shared, improving the reusability of software.
In the C++ language, a derived class can be derived from one base class or multiple base classes. Inheritance derived from one base class is called single inheritance; inheritance derived from multiple base classes is called multiple inheritance.
But there is no multiple inheritance in PHP and Java languages, only single inheritance. That is to say, a class can only inherit data directly from
one class. This is what we call single inheritance.
For example:
The following is the abstraction of the "human" class
Code snippet

//定义一个“人”类作为父类 
class Person{ 
//下面是人的成员属性 
var $name; //人的名子 
var $sex; //人的性别 
var $age; //人的年龄 
//定义一个
构造方法
参数为属性姓名$name、性别$sex和年龄$age进行赋值 
function construct($name, $sex, $age){ 
$this->name=$name; 
$this->sex=$sex; 
$this->age=$age; 
} 
//这个人可以说话的方法, 说出自己的属性 
function say() { 
echo "我的名子叫:".$this->name." 性别:".$this->sex." 我的年龄是:".$this->age."<br>"; 
} 
}
Copy after login

Let's make a "student class" below. If it is not inherited, it is as follows:Code snippet
//定义一个“人”类做为父类 
class Student{ 
//下面是人的成员属性 
var $name; //人的名子 
var $sex; //人的性别 
var $age; //人的年龄 
var $school; //学生所在学校的属性 
//定义一个构造方法参数为属性姓名$name、性别$sex和年龄$age进行赋值 
function construct($name=””, $sex=””, $age=””, $school=””){ 
$this->name=$name; 
$this->sex=$sex; 
$this->age=$age; 
$this->school=$school; 
} 
//这个人可以说话的方法, 说出自己的属性 
function say() { 
echo "我的名子叫:".$this->name." 性别:".$this->sex." 我的年龄是:".$this->age."<br>"; 
} 
//这个学生学习的方法 
function study() { 
echo "我的名子叫:".$this->name." 我正在”.$this->school.”学习<br>"; 
} 
} 
//定义一个子类“学生类“使用”extends”关键字来继承”人”类 
class Student extends Person{ 
var $school; //学生所在学校的属性 
//这个学生学习的方法 
function study() { 
echo "我的名子叫:".$this->name." 我正在”.$this->school.”学习<br>"; 
} 
}
Copy after login

Through the definition of the "Student" class above, the Student class inherits all the member attributes and member methods in the Person class
by using the "extends" keyword, and extends a member attribute "school" of the school where it is located. ", and
a learning method "study()". Now the subclass "Student" and the objects that use this class instance have the following

attributes and methods:

The member attributes in the student class "Student" are:

Name: name;

Age: age;
Gender: sex;
School: school;
The member methods in the student class "Student" are:
Speaking method: say();
Learning method: study( );
The use of the above class inheritance simplifies the creation workload of objects and classes and increases the reproducibility of the code. However, from the example above, the impact of "reusability" and other inheritances is not particularly obvious. If you think about it more broadly, people have There are countless positions, such as the students above, teachers, engineers, doctors, workers, etc., there are many, many. If each class defines attributes and methods that "people" have in common, think about it, there will be a lot of With a little effort, these properties and methods can all be inherited from the "Person" human being.

The above is the detailed content of Detailed explanation of PHP object-oriented inheritance examples. For more information, please follow other related articles on the PHP Chinese website!

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

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 尊渡假赌尊渡假赌尊渡假赌
Two Point Museum: All Exhibits And Where To Find Them
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