PHP study notes 5-class inheritance/method rewriting

WBOY
Release: 2016-08-08 09:21:58
Original
1236 people have browsed it

Change the name of the Man.php file to People.php and add the code:

<span>1</span><span>public</span><span>function</span><span> hi(){
</span><span>2</span><span>return</span><span>$this</span>->_name.' say hi'<span>;
</span><span>3</span> }
Copy after login

Create a new file Man.php:

<span> 1</span> <?<span>php
</span><span> 2</span><span>/*</span><span>*
</span><span> 3</span><span> * Created by PhpStorm.
</span><span> 4</span><span> * User: Administrator
</span><span> 5</span><span> * Date: 2015/6/29
</span><span> 6</span><span> * Time: 11:18
</span><span> 7</span><span>*/</span><span> 8</span><span> 9</span><span>require_once</span> 'People.php'<span>;
</span><span>10</span><span>11</span><span>class</span> Man <span>extends</span> People{<span>//</span><span>extends:继承People类</span><span>12</span><span>public</span><span>function</span> __construct(<span>$age</span>,<span>$name</span><span>){
</span><span>13</span>         parent::__construct(<span>$age</span>,<span>$name</span>,'男'<span>);
</span><span>14</span><span>    }
</span><span>15</span><span>16</span><span>public</span><span>function</span> hi(){<span>//</span><span>重写People类的hi方法
</span><span>17</span><span>//        echo parent::hi();//保留父类hi方法</span><span>18</span><span>echo</span> 'Man '.<span>$this</span>->getName().' say hi'<span>;
</span><span>19</span><span>    }
</span><span>20</span> }
Copy after login

If you retain the parent class method, you can write like thisparent::hi();here Do not keep it, add the following line

to modify the index.php file:

<span>1</span><span>require_once</span> 'Man.php'<span>;
</span><span>2</span><span>$m</span> = <span>new</span> Man(10,'Vito'<span>);
</span><span>3</span><span>echo</span><span>$m</span>->hi();
Copy after login

Finally, you can see the successfully output information on the web page: Man Vito say hi

The above introduces PHP study notes 5-class inheritance/method rewriting, including aspects of the content. I hope it will be helpful to friends who are interested in PHP tutorials.

Related labels:
source:php.cn
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
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!