search
HomeBackend DevelopmentPHP TutorialDetailed explanation of overloading parent class in subclass in object-oriented PHP_PHP tutorial

This article will give you a detailed explanation of overloading parent classes in PHP object-oriented subclasses. I hope this article will help you understand overloading parent classes in PHP subclasses.


Because functions with the same name cannot exist in PHP, methods with the same name cannot be defined in the same class. The overloading mentioned here means that a method with the same name as the parent class can be defined in a subclass to override the method inherited from the parent class.


Overloading parent class methods in subclasses

The code is as follows Copy code


class Person{
                                                                                                                   public $name;                                                                                                                                                               public function __construct($name="" ){
$this->name =$name;
                                                                                                                  }
             public function say(){
echo "My name is".$this->name ;
           }
                                                                                                      }
?>
class Student extends Person{
                                                                                                               public $name;                                                                                                                                             public function __construct($name=""){
$this->name =$name;
                                                                                                          }
//Here defines a method with the same name as the parent class, overwriting and rewriting the speaking method in the parent class
             public function say(){
echo "My name is ".$this->name ." and I am 25 years old" ;
           }
                                                                                                      }
?>

Overriding methods and access permissions

An overridden method in a subclass cannot use more restrictive access permissions than the overridden method in the parent class.

If the access permission of the method in the parent class is protected, then the permissions of the method to be overridden in the subclass must be protected or public; If the method in the parent class is public, then the permissions of the method to be overridden in the subclass must be It can only be public. Perhaps this is why subclasses can inherit private members of the parent class, but cannot use them.

Number of parameters when rewriting

Subclasses can have a different number of parameters than the parent class. For example, in the following constructor, an additional parameter $age is added.

The code is as follows Copy code
 代码如下 复制代码

 

      class Student extends Person{ 

                                                

           public $name;     
          public $age;         
                                                

           public function __construct($name="",$age=25){ 
                $this->name =$name; 

                $this->age =$age; 

          } 

          public  function say(){ 

                echo "我叫".$this->name .",今年".$this->age."岁了" ;   

           }  
                                                   

 } 
 ?>

class Student extends Person{                                                            public $name;            public $age;                                                                                                                                     public function __construct($name="",$age=25){ $this->name =$name; $this->age =$age;         }  public function say(){                         echo "My name is ".$this->name .", and this year ".$this->age." is old";                                                                                                                                                                                                                        } ?>

Constructor overriding

The "number of parameters during rewriting" mentioned above has already enabled the subclass to rewrite the constructor of the parent class, but this is not a good way of writing. If you observe carefully, you will find that, The above subclass Student's rewriting of the parent class's Person constructor is actually adding an extra parameter to the parent class's constructor function, but also copying the original parameters of the parent class, because the structure of the parent class Person The function only has one parameter, so we don’t have any trouble writing it down. However, if there is more than one parameter, but several or more, then you will find that it is cumbersome. So is there any way to simplify this problem? Woolen cloth? The answer is yes, you can use "parent::method name" to call the overridden method in the parent class in the overloaded method of the subclass. For example, use "parent::__construct()" to call the overridden constructor method in the parent class. Other methods are similar, so the above code can be simplified to:

The code is as follows Copy code
 代码如下 复制代码

 

      class Student extends Person{ 

                                      

           public $name;     

           public $age;         
                                     
          public function __construct($name="",$age=25){ 

              parent::__construct($name,$age); 

              $this->age =$age; 
         } 

           public  function say(){ 
             parent::say(); 

              echo ",今年".$this->age."岁了" ;   

          }  
                                         
 } 
 ?>

class Student extends Person{                                                             public $name; public $age;
                                                                                                                     public function __construct($name="",$age=25){ parent::__construct($name,$age); $this->age =$age;
                                                                                              public function say(){
               parent::say(); echo ", this year".$this->age."year old" ;                                                                                                                                                                                                                 }
?>

Let’s look at another example

PHP5 rewriting method
First set up a parent class. This parent class is the "Dog" class. This class describes the characteristics of dog.

Dog has 2 eyes, can run and bark. Just describe it like this.

I have a dog, which is a puppy. It conforms to the characteristics of Dog, but it is different.

My puppy has a name. My puppy is too small. He can’t bark loudly, he can only hum.

We use the concept of inheritance to implement this design.

The code is as follows Copy code
 代码如下 复制代码


// 狗有两只眼睛,会汪汪叫,会跑.
class  Dog {
 protected  $eyeNumber =2; //属性
 //返回封装属性的方法.
 public function getEyeNumber(){
  return $this->eyeNumber;
 }
 //狗会叫 
 public function  yaff(){
  return  "Dog yaff, wang ..wang ..";
 }
 //狗会跑
 public function  run(){
  return  "Dog run..running ...";
 }
}
$dog = new Dog();
echo "dog have ".$dog->getEyeNumber()." eyes.
";
echo $dog->yaff() ."
".$dog->run();
echo  "

";
//这是我的小狗叫"狗狗",它很小.不会汪汪叫,只会哼哼哼..
class MyDog extends Dog {
 private $name = "狗狗";
 public function getName(){
  return $this->name;
 }
    public function  yaff(){
  return  $this->name." yaff, heng...heng ..";
 } 
}
$myDog = new MyDog();
echo $myDog->getName()." have ".$myDog->getEyeNumber()." eyes.
";
echo $myDog->yaff() ."
".$myDog->run();
?>

程序运行结果:

dog have 2 eyes.
Dog yaff, wang ..wang ..
Dog run..running ...

狗狗 have 2 eyes.
狗狗 yaff, heng...heng ..
Dog run..running ...

// The dog has two eyes, can bark, and can run.
class Dog {

protected $eyeNumber =2; //Attribute

//Return the method of encapsulating attributes.

public function getEyeNumber(){
 代码如下 复制代码


// 简化dog类和mydog类,演示重写的访问权限.
class Dog {
 protected  $eyeNumber =2; //属性
 //返回封装属性的方法.
 public function getEyeNumber(){
  return $this->eyeNumber;
 } 
}

class MyDog extends Dog {
 protected function getEyeNumber(){
  return $this->eyeNumber;
 } 
}
/*
class MyDog extends Dog {
 private function getEyeNumber(){
  return $this->eyeNumber;
 } 
}
*/

?>

程序运行结果:
 Fatal error: Access level to MyDog::getEyeNumber() must be public (as in class Dog) in E:PHPProjectstest.php on line 15

return $this->eyeNumber; } //Dogs can bark public function yaff(){ return "Dog yaff, wang ..wang .."; } //Dogs can run public function run(){ return "Dog run..running ..."; } } $dog = new Dog(); echo "dog have ".$dog->getEyeNumber()." eyes.
"; echo $dog->yaff() ."
".$dog->run(); echo "

"; //This is my puppy called "Dog". It is very small. It can't bark, it can only hum.. class MyDog extends Dog { private $name = "dog"; public function getName(){ Return $this->name; } Public function yaff(){ return $this->name." yaff, heng...heng .."; } } $myDog = new MyDog(); echo $myDog->getName()." have ".$myDog->getEyeNumber()." eyes.
"; echo $myDog->yaff() ."
".$myDog->run(); ?> Program execution result: dog has 2 eyes. Dog yaff, wang ..wang .. Dog run..running ... The dog has 2 eyes. Dog yaff, heng...heng .. Dog run..running ...
Overriding methods and access permissions An overridden method in a subclass cannot use more restrictive access permissions than the overridden method in the parent class. When the parent class is public and the subclass is private.
The code is as follows Copy code
// Simplify the dog class and mydog class to demonstrate rewritten access rights. class Dog { protected $eyeNumber =2; //Attribute //Return the method of encapsulating attributes. public function getEyeNumber(){ Return $this->eyeNumber; } } class MyDog extends Dog { protected function getEyeNumber(){ Return $this->eyeNumber; } } /* class MyDog extends Dog { private function getEyeNumber(){ Return $this->eyeNumber; } } */ ?> Program execution result: Fatal error: Access level to MyDog::getEyeNumber() must be public (as in class Dog) in E:PHPProjectstest.php on line 15

When the parent class is public and the subclass is protected.

private function getEyeNumber(){ return $this->eyeNumber;
The code is as follows
 代码如下 复制代码


// 简化dog类和mydog类,演示重写的访问权限.
class Dog {
 protected  $eyeNumber =2; //属性
 //返回封装属性的方法.
 public function getEyeNumber(){
  return $this->eyeNumber;
 } 
}

class MyDog extends Dog {
 private function getEyeNumber(){
  return $this->eyeNumber;
 } 
}

?>

程序运行结果:

 Fatal error: Access level to MyDog::getEyeNumber() must be public (as in class Dog) in E:PHPProjectstest.php on line 15

Copy code


 代码如下 复制代码



// 简化dog类和mydog类,演示重写方法的参数.
class  Dog {
 protected  $eyeNumber =2; //属性
 //返回封装属性的方法.
 public function getEyeNumber(){
  return $this->eyeNumber;
 } 
}
class MyDog extends Dog {
 //重写的方法与父类的方法有不同的参数数量.
 public function getEyeNumber($eys){
  $this->eyeNumber = $eys;
  return $this->eyeNumber;
 } 
}

$myDog = new MyDog();
echo "my dog hava ".$myDog->getEyeNumber(3) ." eyes.";
//啸天犬..哈..
//下面这句会报一个丢失参数的错误.
//echo "my dog hava ".$myDog->getEyeNumber() ." eyes.";
?>

程序运行结果:

 my dog hava 3 eyes.

// Simplify the dog class and mydog class to demonstrate rewritten access rights.

class Dog {

protected $eyeNumber =2; //Attribute

//Return the method of encapsulating attributes.

public function getEyeNumber(){

return $this->eyeNumber;

}
 代码如下 复制代码


//2-2 / extends1.php
//构造函数继承的问题.
class Animal{
 public $legNum = 0;
 public function __construct(){
  $this->legNum = 4;
  echo "I am an animal
";
 }
}
class Dog1 extends Animal {
 public function __construct(){
  $this->legNum = 4;
  echo "I am a Dog .
";
 }
}
$dog1 = new Dog1();
echo "
";
echo  "legNum is ".$dog1->legNum;
/*
实例化子类时.构造函数被调用了.
*/
?>

程序运行结果:

 I am a Dog . 
legNum is 4

}

class MyDog extends Dog {
} } ?> Program execution result: Fatal error: Access level to MyDog::getEyeNumber() must be public (as in class Dog) in E:PHPProjectstest.php on line 15 Number of parameters when rewriting Subclasses can have a different number of parameters than the parent class. (This is different from java, PHP is a weakly typed language.)
The code is as follows Copy code
// Simplify the dog class and mydog class and demonstrate the parameters of the overridden method. class Dog { protected $eyeNumber =2; //Attribute //Return the method of encapsulating attributes. public function getEyeNumber(){ return $this->eyeNumber; } } class MyDog extends Dog { //The overridden method has a different number of parameters than the parent class method. public function getEyeNumber($eys){ $this->eyeNumber = $eys; return $this->eyeNumber; } } $myDog = new MyDog(); echo "my dog ​​hava ".$myDog->getEyeNumber(3) ." eyes."; //Howling Sky Dog...ha... //The following sentence will report a missing parameter error. //echo "my dog ​​hava ".$myDog->getEyeNumber() ." eyes."; ?> Program execution result: my dog ​​hava 3 eyes. Constructor overriding In the following example, both the parent class and the subclass have their own constructors. When the subclass is instantiated, the constructor of the subclass is called, but the constructor of the parent class is not called. Please compare the first Section constructor inheritance.
The code is as follows Copy code
//2-2 / extends1.php //Problems with constructor inheritance. class Animal{ public $legNum = 0; public function __construct(){ $this->legNum = 4; echo "I am an animal
"; } } class Dog1 extends Animal { public function __construct(){ $this->legNum = 4; echo "I am a Dog .
"; } } $dog1 = new Dog1(); echo "
"; echo "legNum is ".$dog1->legNum; /* When instantiating a subclass, the constructor is called. */ ?> Program execution result: I am a Dog . legNum is 4 Note: This is different from Java. In Java, constructors cannot be inherited, and when a subclass is instantiated, the constructor of the subclass is called, and the constructor of the parent class is also called.

www.bkjia.comtruehttp: //www.bkjia.com/PHPjc/632690.htmlTechArticleThis article will give you a detailed explanation of overloading parent classes in object-oriented subclasses in PHP. I hope this article It will be helpful for you to understand overloading parent classes in PHP subclasses. Because it cannot be saved in PHP...
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 22, 2022 pm 05:02 PM

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

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

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

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

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

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 22, 2022 pm 08:31 PM

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

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 Article

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

Hot Tools

SAP NetWeaver Server Adapter for Eclipse

SAP NetWeaver Server Adapter for Eclipse

Integrate Eclipse with SAP NetWeaver application server.

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.

VSCode Windows 64-bit Download

VSCode Windows 64-bit Download

A free and powerful IDE editor launched by Microsoft

MantisBT

MantisBT

Mantis is an easy-to-deploy web-based defect tracking tool designed to aid in product defect tracking. It requires PHP, MySQL and a web server. Check out our demo and hosting services.

mPDF

mPDF

mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),