网站地图    收藏   

主页 > php专栏 > php面向对象 >

PHP面向对象开发之类的多态详解 - php面向对象

来源:自学PHP网    时间:2014-11-30 12:29 作者: 阅读:

[导读] 类的多态1 多态的介绍和优势。2 运算符:instanceof。3 多态的简单应用。1 多态的介绍和优势介绍:多态性是继承抽象和继承后,面向对象语言...

PHP面向对象开发之类的多态详解

类的多态

1.多态的介绍和优势。

2.运算符:instanceof。

3.多态的简单应用。

1.多态的介绍和优势

介绍:多态性是继承抽象和继承后,面向对象语言的第三特征。

例子:USB接口,插上不同的东西会使用不同的功能。

优势:OOP并不仅仅是把很多函数和功能集合起来,目的而是使用类,继承,多态的方式描述我们生活中的一种情况。

2.运算符:instanceof

PHP一个类型运算符,用来测定一个给定的对象是否来自指定的对象

格式代码如下:

  1. class A {} 
  2. class B {} 
  3. $thing = new A; 
  4. if ($thing instanceof A) { 
  5. echo "A"
  6. if ($thing instanceof B) { 
  7. echo "B"

3.多态的简单应用

实例1代码如下:

  1. <?php 
  2. class A { 
  3. class B { 
  4. $new = new A; 
  5. if ($new instanceof A) { 
  6. echo "A"
  7. if ($new instanceof B) { 
  8. echo "B"
  9. ?> 

实例2代码如下:

  1. <?php 
  2. interface MyUsb { 
  3.  function type(); 
  4.  function alert(); 
  5. class Zip implements MyUsb { 
  6.  function type() { 
  7.   echo "2.0"
  8.  } 
  9.  function alert() { 
  10.   echo "U盘驱动正在检测……<br />"
  11.  } 
  12. class Mp3 implements MyUsb { 
  13.  function type() { 
  14.   echo "1.0"
  15.  } 
  16.  function alert() { 
  17.   echo "MP3驱动正在检测……"
  18.  } 
  19. class MyPc { 
  20.  function Add_Usb($what) { 
  21.   $what->type(); 
  22.   $what->alert(); 
  23.  } 
  24. $p = new MyPc(); 
  25. $zip = new Zip(); 
  26. $mp3 = new Mp3(); 
  27. $p->Add_Usb($zip); 
  28. $p->Add_Usb($mp3); 
  29. ?> 

补充一个实例代码:

  1. <html> 
  2. <head> 
  3. <meta http-equiv="Content-Type" content="text/html; charset=gb2312"
  4. <title>继承和多态</title> 
  5. </head> 
  6. <body> 
  7. <?php 
  8. /*  父类  */ 
  9. class MyObject{ 
  10.  public $object_name;         //图书名称 
  11.  public $object_price;          //图书价格 
  12.  public $object_num;          //图书数量 
  13.  public $object_agio;          //图书折扣 
  14.  function __construct($name,$price,$num,$agio){    //构造函数 
  15.   $this -> object_name = $name
  16.   $this -> object_price = $price
  17.   $this -> object_num = $num
  18.   $this -> object_agio = $agio
  19.  } 
  20.  function showMe(){          //输出函数 
  21.   echo '这句话不会显示。'
  22.  } 
  23. /*  子类Book  */ 
  24. class Book extends MyObject{         //MyObject的子类。 
  25.  public $book_type;          //类别 
  26.  function __construct($type,$num){       //声明构造方法 
  27.   $this -> book_type = $type
  28.   $this -> object_num = $num
  29.  } 
  30.  function showMe(){          //重写父类中的showMe方法  
  31.   return '本次新进'.$this -> book_type.'图书'.$this->object_num.'本<br>'
  32.  } 
  33. /*  子类Elec  */ 
  34. class Elec extends MyObject{         //MyObject的另一个子类 
  35.  function showMe(){          //重写父类中的showMe方法 
  36.   return '热卖图书:'.$this -> object_name.'<br>原价:'.$this -> object_price.'<br>特价:'.$this -> object_price * $this -> object_agio; 
  37.  } 
  38. /*  实例化对象  */ 
  39. $c_book = new Book('计算机类',1000);       //声明一个Book子类对象 
  40. $h_elec = new Elec('PHP函数参考大全',98,3,0.8);     //声明一个Elec子类对象 
  41. echo $c_book->showMe()."<br>";        //输出Book子类的showMe()方法 
  42. echo $h_elec->showMe();         //输出Elec子类的是showMe()方法 
  43. ?> 
  44. </body> 
  45. </html> 

自学PHP网专注网站建设学习,PHP程序学习,平面设计学习,以及操作系统学习

京ICP备14009008号-1@版权所有www.zixuephp.com

网站声明:本站所有视频,教程都由网友上传,站长收集和分享给大家学习使用,如由牵扯版权问题请联系站长邮箱904561283@qq.com

添加评论