search
HomeBackend DevelopmentPHP TutorialPHP object-oriented guide (8) Overloading new methods_PHP tutorial
PHP object-oriented guide (8) Overloading new methods_PHP tutorialJul 21, 2016 pm 03:43 PM
phpComplete strategyDiscoverexiststudyobjectmethodOverloadFor

12. Overload new methods
When learning PHP, you will find that methods in PHP cannot be overloaded. The so-called method overloading means
defining the same method Name, through different "number of parameters" or different "type of parameters", to access different methods of our same method
name. However, because PHP is a weakly typed language, it can receive different types of data in the parameters of the method itself. And because the PHP method can receive an indefinite number of parameters, it can be called by passing different numbers of parameters.
Different methods with different method names are also not valid. So there is no method overloading in PHP. It cannot be overloaded, which means that methods with the same method name cannot be defined in
your project. In addition, because PHP does not have the concept of name subspace, methods with the same name cannot be defined on the same page
and included pages, nor can they be defined with the same name as the method provided by PHP, of course
Methods with the same name cannot be defined in the same class.
What do we mean by overloading new methods here? In fact, what we call overloading a new method is that the subclass
overrides the existing method of the parent class, so why do we do this? Can’t the methods of the parent class be inherited and used directly? But
there are some situations that we must cover. For example, in the example we mentioned earlier, the human being "Person"
has a "speak" method, and all those who inherit the "Person" class All subclasses can "speak". Our "Student"
class is a subclass of the "Person" class, so instances of "Student" can "speak", but humans "speak
words" The method states the attributes in the "Person" class, and the "Student" class extends the "Person" class and several new attributes. If you use the inherited "say ()" speaking method, you can only speak those attributes inherited from the
"Person" class, but the newly extended attributes cannot be spoken using the inherited "say()"
method. Yes, some people asked, if I define a new method in the "Student" subclass for
to speak, wouldn't it be enough to tell all the attributes in the subclass? Be sure not to do this. From an abstract point of view, a "student" cannot have two ways of "speaking". Even if you define two different speaking methods, you can achieve what you want
Function, the inherited "talk" method may not be used anymore, and you cannot delete it even if it is inherited.
At this time we will use overlay.
Although methods with the same name cannot be defined in PHP, in the two classes with a parent-child relationship, we can define methods with the same name as the parent class in the subclass
, so that the methods inherited from the parent class The method is overridden.
Code snippet



Copy code

The code is as follows:
//Define a "person" Class as the parent class
class Person{
//The following are the member attributes of the person
var $name; //The person’s name
var $sex; //The person’s gender
var $age; //Age of a person
//Define a constructor parameter to assign values ​​to the attributes name $name, gender $sex and age $age
function __construct($name, $sex, $age){
$this->name=$name;
$this->sex=$sex;
$this->age=$age;
}
//This person A way to speak, tell your own attributes
function say() {
echo "My name is: ".$this->name." Gender: ".$this->sex. " My age is: ".$this->age."
";
}
}
class Student extends Person
{
var $school; // Attributes of the school where the student is located
//How this student studies
function study() {
echo "My name is: ".$this->name." I am studying ".$this ->school."Learning
";
}
//This is a method that can talk about learning. It tells all its attributes and overrides the method of the same name in the parent class
function say( ) {
echo "My name is: ".$this->name." Gender: ".$this->sex." My age is: ".$this->age." I go to school at
".$this->school.".
";
}
}
?>


In the above example, we have overwritten the "say()" method inherited from the parent class in the "Student" subclass. By
overwriting, we have achieved the extension of the "method".
However, although doing this solves the problem we mentioned above, in actual development, a method cannot
consist of just one code or several codes, such as "say(" in the "Person" class )" method has 100 lines of code in it. For example
if we want to overwrite this method and retain the original functions plus a little bit more, we have to rewrite the original 100 lines of code
once and add The several lines of code extended above are pretty good, but in some cases, the methods in the parent class cannot see the original code
. How do you rewrite the original code at this time? We also have a solution, that is, in the subclass method, you can
call the overridden method in the parent class, that is, take the original functions of the overridden method and add your own
Function, you can use two methods to call the overridden method of the parent class in the method of the subclass:
One is to use the "class name::" of the parent class to call the overridden method of the parent class;
One is to use "parent::" method to call the overridden method in the parent class;
Code snippet
Copy code The code is as follows :

class Student extends Person{
var $school; //Attributes of the school where the student is located
//How this student learns
function study() {
echo "My name is: ".$this->name." I am studying at ".$this->school."
";
}
//This academic ability is OK The speaking method, tells all its attributes, overriding the parent class's method with the same name
function say() {
//Use the parent class's "class name::" to call the overridden method in the parent class ;
// Person::say();
//Or use "parent::" method to call the overridden method in the parent class;
parent::say();
//Add some of your own functions
echo "My age is: ".$this->age." I go to school in ".$this->school.".
";
}
}

Now you can access the overridden methods in the parent class in two ways. Which method is best for us? Users may
find that the code they write accesses the variables and functions of the parent class. This is especially true if the subclass is very refined or the parent class is very specialized
. Do not use the literal name of the parent class in the code. Instead, use the special name parent, which refers to the name of the parent class pointed to in the extends declaration of the child
class. Doing this avoids using the parent class's name in multiple places. If the
inheritance tree needs to be modified during implementation, simply modify the extends declaration in the class.
Similarly, if the constructor is not declared in the subclass, you can also use the constructor in the parent class. If a constructor is redefined in the subclass
, it will also override the constructor in the parent class. If you want to use the new constructor to assign values ​​to all
properties, you can use the same method.
Code snippet
Copy code The code is as follows:

class Student extends Person{
var $school; / /Attributes of the student’s school
function __construct($name, $sex, $age, $school){
//Use the method in the parent class to assign values ​​to the original attributes
parent::__construct( $name, $sex, $age);
$this->school=$school;
}
//How this student learns
function study() {
echo " My name is: ".$this->name." I am studying at ".$this->school."
";
}
//How this person can talk , say your own attributes
function say() {
parent::say();
//Add some of your own functions
echo "My age is: ".$this- >age."I go to school in ".$this->school.".
";

www.bkjia.comtruehttp: //www.bkjia.com/PHPjc/320638.htmlTechArticle12. Overloading new methods When learning PHP, you will find that the methods in PHP cannot Overloading, the so-called method overloading is to define the same method name, through the "number of parameters"...
Statement
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
php怎么把负数转为正整数php怎么把负数转为正整数Apr 19, 2022 pm 08:59 PM

php把负数转为正整数的方法:1、使用abs()函数将负数转为正数,使用intval()函数对正数取整,转为正整数,语法“intval(abs($number))”;2、利用“~”位运算符将负数取反加一,语法“~$number + 1”。

php怎么实现几秒后执行一个函数php怎么实现几秒后执行一个函数Apr 24, 2022 pm 01:12 PM

实现方法:1、使用“sleep(延迟秒数)”语句,可延迟执行函数若干秒;2、使用“time_nanosleep(延迟秒数,延迟纳秒数)”语句,可延迟执行函数若干秒和纳秒;3、使用“time_sleep_until(time()+7)”语句。

php怎么除以100保留两位小数php怎么除以100保留两位小数Apr 22, 2022 pm 06:23 PM

php除以100保留两位小数的方法:1、利用“/”运算符进行除法运算,语法“数值 / 100”;2、使用“number_format(除法结果, 2)”或“sprintf("%.2f",除法结果)”语句进行四舍五入的处理值,并保留两位小数。

php字符串有没有下标php字符串有没有下标Apr 24, 2022 am 11:49 AM

php字符串有下标。在PHP中,下标不仅可以应用于数组和对象,还可应用于字符串,利用字符串的下标和中括号“[]”可以访问指定索引位置的字符,并对该字符进行读写,语法“字符串名[下标值]”;字符串的下标值(索引值)只能是整数类型,起始值为0。

php怎么根据年月日判断是一年的第几天php怎么根据年月日判断是一年的第几天Apr 22, 2022 pm 05:02 PM

判断方法:1、使用“strtotime("年-月-日")”语句将给定的年月日转换为时间戳格式;2、用“date("z",时间戳)+1”语句计算指定时间戳是一年的第几天。date()返回的天数是从0开始计算的,因此真实天数需要在此基础上加1。

php怎么读取字符串后几个字符php怎么读取字符串后几个字符Apr 22, 2022 pm 08:31 PM

在php中,可以使用substr()函数来读取字符串后几个字符,只需要将该函数的第二个参数设置为负值,第三个参数省略即可;语法为“substr(字符串,-n)”,表示读取从字符串结尾处向前数第n个字符开始,直到字符串结尾的全部字符。

php怎么替换nbsp空格符php怎么替换nbsp空格符Apr 24, 2022 pm 02:55 PM

方法:1、用“str_replace(" ","其他字符",$str)”语句,可将nbsp符替换为其他字符;2、用“preg_replace("/(\s|\&nbsp\;||\xc2\xa0)/","其他字符",$str)”语句。

php怎么判断有没有小数点php怎么判断有没有小数点Apr 20, 2022 pm 08:12 PM

php判断有没有小数点的方法:1、使用“strpos(数字字符串,'.')”语法,如果返回小数点在字符串中第一次出现的位置,则有小数点;2、使用“strrpos(数字字符串,'.')”语句,如果返回小数点在字符串中最后一次出现的位置,则有。

See all articles

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 Tools

SAP NetWeaver Server Adapter for Eclipse

SAP NetWeaver Server Adapter for Eclipse

Integrate Eclipse with SAP NetWeaver application server.

SublimeText3 Linux new version

SublimeText3 Linux new version

SublimeText3 Linux latest version

MinGW - Minimalist GNU for Windows

MinGW - Minimalist GNU for Windows

This project is in the process of being migrated to osdn.net/projects/mingw, you can continue to follow us there. MinGW: A native Windows port of the GNU Compiler Collection (GCC), freely distributable import libraries and header files for building native Windows applications; includes extensions to the MSVC runtime to support C99 functionality. All MinGW software can run on 64-bit Windows platforms.

WebStorm Mac version

WebStorm Mac version

Useful JavaScript development tools

VSCode Windows 64-bit Download

VSCode Windows 64-bit Download

A free and powerful IDE editor launched by Microsoft