php使用类继承解决代码重复的问题
本文实例讲述了php使用类继承解决代码重复的问题。分享给大家供大家参考。具体分析如下:
继承直白地说就是给一个类建一个或多个子类,要创建子类就必须在类声明中使用 extends 关键字,新类名在前,extends 在中,父类名在后。
下例中,我们创建两个新类,bookproduct 和cdproduct ,它们都继承自 shopproduct 类。
header('content-type:text/html;charset=utf-8');
// 从这篇开始,类名首字母一律大写,规范写法
class shopproduct{ // 声明类
public $numpages; // 声明属性
public $playlenth;
public $title;
public $producermainname;
public $producerfirstname;
public $price;
function __construct($title,$firstname,$mainname,$price,$numpages=0,$playlenth=0){
$this -> title = $title; // 给属性 title 赋传进来的值
$this -> producerfirstname= $firstname;
$this -> producermainname = $mainname;
$this -> price= $price;
$this -> numpages= $numpages;
$this -> playlenth= $playlenth;
}
function getproducer(){ // 声明方法
return "{$this -> producerfirstname }"."{$this -> producermainname}";
}
function getsummaryline(){
$base = "{$this->title}( {$this->producermainname},";
$base .= "{$this->producerfirstname} )";
return $base;
}
}
class cdproduct extends shopproduct {
function getplaylength(){
return $this -> playlength;
}
function getsummaryline(){
$base = "{$this->title}( {$this->producermainname},";
$base .= "{$this->producerfirstname} )";
$base .= ":playing time - {$this->playlength} )";
return $base;
}
}
class bookproduct extends shopproduct {
function getnumberofpages(){
return $this -> numpages;
}
function getsummaryline(){
$base = "{$this->title}( {$this->producermainname},";
$base .= "{$this->producerfirstname} )";
$base .= ":page cont - {$this->numpages} )";
return $base;
}
}
?>
由于子类没有定义构造方法,所以在实例化 bookproduct 和cdproduct 类时,会自动调用父类 shopproduct 的构造方法。
子类默认继承了父类所有的 public 和 protected方法与属性(但没有继承 private 方法与属性,后面会讲到这三个关键字的作用)。也就是说,我们可以在从 cdproduct 类实例化的对象中调用 getproducer() 方法,尽管 getproducer() 是在 shopproduct 类中定义的。
将一下代码加到上面:
print "美好生活:{$product2 -> getproducer()}<br>";
// 结果是:美好生活:郭碗瓢盆
这两个子类都继承了父类的公共部分,但注意, bookproduct 和cdproduct 类都覆写了 getsummaryline() 方法,提供了自己独特的实现,说明子类可以拓展和修改父类的功能。
但该方法在父类中的实现似乎有点多余,因为它的两个子类都重写了该方法,不过其他子类可能会用到它的基本功能。该方法的存在为客户端代码提供了保证:所有的 shopproduct 对象都将有 getsummaryline() 方法, bookproduct 和cdproduct 都使用各自的 getsummaryline() 方法访问 $title 属性。
可能一开始,继承是一个不太容易理解的概念。首先我们可以知道,通过定义一个从其他类继承而来的类,我们确保一个类拥有其*的功能和父类的功能。然后就是子类的“搜索”功能,当我们调用 $product2 -> getproducer() 时,在 cdproduct 类中并没有找到 getproducer() 方法,那么就查找 shopproduct 类中是否有这个方法,有就调用,没有则报错。对属性的访问也是同样的道理。
看看 shopproduct 的构造方法,就会发现我们仍然在 基类(父类)中管理本应是子类处理的数据:bookproduct 应该处理 $numpages 参数和属性;cdproduct 应该处理 $playlength 参数和属性。要完成这个工作,我们需要在子类中分别定义构造方法。
希望本文所述对大家的php程序设计有所帮助。
推荐阅读
-
PHP使用Memcache时模拟命名空间及缓存失效问题的解决
-
PHP的foreach中使用引用时需要注意的一个问题和解决方法
-
使用php+apc实现上传进度条且在IE7下不显示的问题解决方法
-
PHP中使用gettext解决国际化问题的例子(i18n)
-
PHP类的使用 实例代码讲解
-
使用wordpress的$wpdb类读mysql数据库做ajax时出现的问题该如何解决
-
win2003下PHP使用preg_match_all导致apache崩溃问题的解决方法
-
PHP的foreach中使用引用时需要注意的一个问题和解决方法
-
解决PHP4.0 和 PHP5.0类构造函数的兼容问题
-
PHP使用curl_multi_select解决curl_multi网页假死问题的方法