码迷,mamicode.com
首页 > Web开发 > 详细

php 继承 例子

时间:2017-02-17 12:53:46      阅读:173      评论:0      收藏:0      [点我收藏+]

标签:xtend   foo   覆盖   int   保护   example   hpc   put   end   

继承将会影响到类与类,对象与对象之间的关系。

比如,当扩展一个类,子类就会继承父类的所有公有和保护方法。但是子类的方法会覆盖父类的方法。

继承对于功能的设计和抽象是非常有用的,而且对于类似的对象增加新功能就无须重新再写这些公用的功能。

继承代码示例

<?php

class foo
{
    public function printItem($string) 
    {
        echo ‘Foo: ‘ . $string . PHP_EOL;
    }
    
    public function printPHP()
    {
        echo ‘PHP is great.‘ . PHP_EOL;
    }
}

class bar extends foo
{
    public function printItem($string)
    {
        echo ‘Bar: ‘ . $string . PHP_EOL;
    }
}

$foo = new foo();
$bar = new bar();
$foo->printItem(‘baz‘); // Output: ‘Foo: baz‘
$foo->printPHP();       // Output: ‘PHP is great‘ 
$bar->printItem(‘baz‘); // Output: ‘Bar: baz‘
$bar->printPHP();       // Output: ‘PHP is great‘

?> 

php 继承 例子

标签:xtend   foo   覆盖   int   保护   example   hpc   put   end   

原文地址:http://www.cnblogs.com/yyy251/p/6409187.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!