PHP面向对象程序设计之对象生成方法详解


Posted in PHP onDecember 02, 2016

本文实例讲述了PHP面向对象程序设计之对象生成方法。分享给大家供大家参考,具体如下:

对象

看个例子

<?php
abstract class Employee { // 雇员
  protected $name;
  function __construct( $name ) {
    $this->name = $name;
  }
  abstract function fire();
}
class Minion extends Employee { // 奴隶 继承 雇员
  function fire() {
    print "{$this->name}: I'll clear my desk\n";
  }
}
class NastyBoss { // 坏老板
  private $employees = array();
  function addEmployee( $employeeName ) { // 添加员工
    $this->employees[] = new Minion( $employeeName ); // 代码灵活性受到限制
  }
  function projectFails() {
    if ( count( $this->employees ) > 0 ) {
      $emp = array_pop( $this->employees );
      $emp->fire(); // 炒鱿鱼
    }
  }
}
$boss = new NastyBoss();
$boss->addEmployee( "harry" );
$boss->addEmployee( "bob" );
$boss->addEmployee( "mary" );
$boss->projectFails();
// output:
// mary: I'll clear my desk
?>

再看一个更具有灵活性的案例

<?php
abstract class Employee {
  protected $name;
  function __construct( $name ) {
    $this->name = $name;
  }
  abstract function fire();
}
class Minion extends Employee {
  function fire() {
    print "{$this->name}: I'll clear my desk\n";
  }
}
class NastyBoss {
  private $employees = array(); 
  function addEmployee( Employee $employee ) { // 传入对象
    $this->employees[] = $employee;
  }
  function projectFails() {
    if ( count( $this->employees ) ) {
      $emp = array_pop( $this->employees );
      $emp->fire();
    }
  }
}
// new Employee class...
class CluedUp extends Employee {
  function fire() {
    print "{$this->name}: I'll call my lawyer\n";
  }
}
$boss = new NastyBoss();
$boss->addEmployee( new Minion( "harry" ) ); // 直接以对象作为参数,更具有灵活性
$boss->addEmployee( new CluedUp( "bob" ) );
$boss->addEmployee( new Minion( "mary" ) );
$boss->projectFails();
$boss->projectFails();
$boss->projectFails();
// output:
// mary: I'll clear my desk
// bob: I'll call my lawyer
// harry: I'll clear my desk
?>

单例

<?php
class Preferences {
  private $props = array();
  private static $instance; // 私有的,静态属性
  private function __construct() { } // 无法实例化,私有的构造函数
  public static function getInstance() { // 返回对象 静态方法才可以被类访问,静态方法中要有静态属性
    if ( empty( self::$instance ) ) {
      self::$instance = new Preferences();
    }
    return self::$instance;
  }
  public function setProperty( $key, $val ) {
    $this->props[$key] = $val;
  }
  public function getProperty( $key ) {
    return $this->props[$key];
  }
}
$pref = Preferences::getInstance();
$pref->setProperty( "name", "matt" );
unset( $pref ); // remove the reference
$pref2 = Preferences::getInstance();
print $pref2->getProperty( "name" ) ."\n"; // demonstrate value is not lost
?>

点评:不能随意创建对象,只能通过Preferences::getInstance()来创建对象。

工厂模式

<?php
abstract class ApptEncoder {
  abstract function encode();
}
class BloggsApptEncoder extends ApptEncoder {
  function encode() {
    return "Appointment data encoded in BloggsCal format\n";
  }
}
class MegaApptEncoder extends ApptEncoder {
  function encode() {
    return "Appointment data encoded in MegaCal format\n";
  }
}
class CommsManager { // 负责生产Bloggs对象
  function getApptEncoder() {
    return new BloggsApptEncoder();
  }
}
$obj = new CommsManager();
$bloggs = $obj->getApptEncoder(); // 获取对象
print $bloggs->encode();
?>

output:

Appointment data encoded in BloggsCal format

进一步增加灵活性设置

<?php
abstract class ApptEncoder {
  abstract function encode();
}
class BloggsApptEncoder extends ApptEncoder {
  function encode() {
    return "Appointment data encoded in BloggsCal format\n";
  }
}
class MegaApptEncoder extends ApptEncoder {
  function encode() {
    return "Appointment data encoded in MegaCal format\n";
  }
}
class CommsManager {
  const BLOGGS = 1;
  const MEGA = 2;
  private $mode ;
  function __construct( $mode ) {
    $this->mode = $mode;
  }
  function getHeaderText() {
    switch ( $this->mode ) {
      case ( self::MEGA ):
        return "MegaCal header\n";
      default:
        return "BloggsCal header\n";
    }
  }
  function getApptEncoder() {
    switch ( $this->mode ) {
      case ( self::MEGA ):
        return new MegaApptEncoder();
      default:
        return new BloggsApptEncoder();
    }
  }
}
$man = new CommsManager( CommsManager::MEGA );
print ( get_class( $man->getApptEncoder() ) )."\n";
$man = new CommsManager( CommsManager::BLOGGS );
print ( get_class( $man->getApptEncoder() ) )."\n";
?>

output:

MegaApptEncoder
BloggsApptEncoder

工厂方法模式要把创建者类与要生产的产品类分离开来。

抽象工厂

通过抽象来来约束,成为一定的规矩。

<?php
abstract class ApptEncoder {
  abstract function encode();
}
class BloggsApptEncoder extends ApptEncoder {
  function encode() {
    return "Appointment data encoded in BloggsCal format\n";
  }
}
class MegaApptEncoder extends ApptEncoder {
  function encode() {
    return "Appointment data encoded in MegaCal format\n";
  }
}
abstract class CommsManager { // 预约
  abstract function getHeaderText();
  abstract function getApptEncoder();
  abstract function getTtdEncoder();
  abstract function getContactEncoder();
  abstract function getFooterText();
}
class BloggsCommsManager extends CommsManager {
  function getHeaderText() {
    return "BloggsCal header\n";
  }
  function getApptEncoder() {
    return new BloggsApptEncoder();
  }
  function getTtdEncoder() {
    return new BloggsTtdEncoder();
  }
  function getContactEncoder() {
    return new BloggsContactEncoder();
  }
  function getFooterText() {
    return "BloggsCal footer\n";
  }
}
class MegaCommsManager extends CommsManager {
  function getHeaderText() {
    return "MegaCal header\n";
  }
  function getApptEncoder() {
    return new MegaApptEncoder();
  }
  function getTtdEncoder() {
    return new MegaTtdEncoder();
  }
  function getContactEncoder() {
    return new MegaContactEncoder();
  }
  function getFooterText() {
    return "MegaCal footer\n";
  }
}
$mgr = new MegaCommsManager();
print $mgr->getHeaderText();
print $mgr->getApptEncoder()->encode(); // 对象调用方法,返回对象,继续调用方法。
print $mgr->getFooterText();
?>

output:

MegaCal header
Appointment data encoded in MegaCal format
MegaCal footer

更加牛逼的实现

<?php
// 根据类图,规划类的代码。从大局入手。
abstract class ApptEncoder {
  abstract function encode();
}
class BloggsApptEncoder extends ApptEncoder {
  function encode() {
    return "Appointment data encoded in BloggsCal format\n";
  }
}
class MegaApptEncoder extends ApptEncoder {
  function encode() {
    return "Appointment data encoded in MegaCal format\n";
  }
}
abstract class CommsManager {
  const APPT  = 1;
  const TTD   = 2;
  const CONTACT = 3;
  abstract function getHeaderText();
  abstract function make( $flag_int ); // int标记
  abstract function getFooterText();
}
class BloggsCommsManager extends CommsManager {
  function getHeaderText() {
    return "BloggsCal header\n";
  }
  function make( $flag_int ) {
    switch ( $flag_int ) {
      case self::APPT: // self直接控制常量
        return new BloggsApptEncoder();
      case self::CONTACT:
        return new BloggsContactEncoder();
      case self::TTD:
        return new BloggsTtdEncoder();
    }
  }
  function getFooterText() {
    return "BloggsCal footer\n";
  }
}
$mgr = new BloggsCommsManager();
print $mgr->getHeaderText();
print $mgr->make( CommsManager::APPT )->encode();
print $mgr->getFooterText();
?>

output:

BloggsCal header
Appointment data encoded in BloggsCal format
BloggsCal footer

原型模式

改造成一个保存具体产品的工厂类。

<?php
class Sea {} // 大海
class EarthSea extends Sea {}
class MarsSea extends Sea {}
class Plains {} // 平原
class EarthPlains extends Plains {}
class MarsPlains extends Plains {}
class Forest {} // 森林
class EarthForest extends Forest {}
class MarsForest extends Forest {}
class TerrainFactory { // 地域工厂
  private $sea;
  private $forest;
  private $plains;
  function __construct( Sea $sea, Plains $plains, Forest $forest ) { // 定义变量为类对象
    $this->sea = $sea;
    $this->plains = $plains;
    $this->forest = $forest;
  }
  function getSea( ) {
    return clone $this->sea; // 克隆
  }
  function getPlains( ) {
    return clone $this->plains;
  }
  function getForest( ) {
    return clone $this->forest;
  }
}
$factory = new TerrainFactory( new EarthSea(),
  new EarthPlains(),
  new EarthForest() );
print_r( $factory->getSea() );
print_r( $factory->getPlains() );
print_r( $factory->getForest() );
?>

output:

EarthSea Object
(
)
EarthPlains Object
(
)
EarthForest Object
(
)

希望本文所述对大家PHP程序设计有所帮助。

PHP 相关文章推荐
第九节 绑定 [9]
Oct 09 PHP
java EJB 加密与解密原理的一个例子
Jan 11 PHP
PHP常用函数小技巧
Sep 11 PHP
遍历指定目录下的所有目录和文件的php代码
Nov 27 PHP
php调用新浪短链接API的方法
Nov 08 PHP
php对关联数组循环遍历的实现方法
Mar 13 PHP
php while循环控制的简单实例
May 30 PHP
php函数传值的引用传递注意事项分析
Jun 25 PHP
PHP获取当前文件的父目录方法汇总
Jul 21 PHP
PHP实现递归目录的5种方法
Oct 27 PHP
PHP文件管理之实现网盘及压缩包的功能操作
Sep 20 PHP
TP5框架实现签到功能的方法分析
Apr 05 PHP
PHP面向对象程序设计组合模式与装饰模式详解
Dec 02 #PHP
PHP与jquery实时显示网站在线人数实例详解
Dec 02 #PHP
谈谈php对接芝麻信用踩的坑
Dec 01 #PHP
PHP自定义函数获取汉字首字母的方法
Dec 01 #PHP
phpmailer绑定邮箱的实现方法
Dec 01 #PHP
thinkPHP实现多字段模糊匹配查询的方法
Dec 01 #PHP
thinkPHP商城公告功能开发问题分析
Dec 01 #PHP
You might like
PHP实现域名whois查询的代码(数据源万网、新网)
2010/02/22 PHP
php中static静态变量的使用方法详解
2010/06/04 PHP
PHP实现多关键字加亮功能
2016/10/21 PHP
用AJAX返回HTML片段中的JavaScript脚本
2010/01/04 Javascript
Jquery Validation插件防止重复提交表单的解决方法
2010/03/05 Javascript
utf-8编码引起js输出中文乱码的解决办法
2010/06/23 Javascript
关于javascript中的typeof和instanceof介绍
2012/12/04 Javascript
在js中判断checkboxlist(.net控件客户端id)是否有选中
2013/04/11 Javascript
浮动的div自适应居中显示的js代码
2013/12/23 Javascript
jquery清空表单数据示例分享
2014/02/13 Javascript
jQuery性能优化的38个建议
2014/03/04 Javascript
浅谈javascript函数式编程
2015/09/06 Javascript
当jquery ajax遇上401请求的解决方法
2016/05/19 Javascript
基于gulp合并压缩Seajs模块的方式说明
2016/06/14 Javascript
JavaScript解析JSON格式数据的方法示例
2017/01/24 Javascript
vue.js指令和组件详细介绍及实例
2017/04/06 Javascript
js 取消页面可以选中文字的功能方法
2018/01/02 Javascript
JS实现深度优先搜索求解两点间最短路径
2019/01/17 Javascript
浅谈es6中的元编程
2020/12/01 Javascript
利用python批量爬取百度任意类别的图片的实现方法
2020/10/07 Python
Python 使用xlwt模块将多行多列数据循环写入excel文档的操作
2020/11/10 Python
python 使用csv模块读写csv格式文件的示例
2020/12/02 Python
Python项目打包成二进制的方法
2020/12/30 Python
python使用Windows的wmic命令监控文件运行状况,如有异常发送邮件报警
2021/01/30 Python
Doyoueven官网:澳大利亚健身服饰和配饰品牌
2019/03/24 全球购物
The North Face意大利官网:服装、背包和鞋子
2020/06/17 全球购物
纬创Java面试题笔试题
2014/10/02 面试题
信息管理应届生求职信
2014/03/07 职场文书
春风行动实施方案
2014/03/28 职场文书
商务经理岗位职责
2014/08/03 职场文书
个人股份转让协议书范本
2014/10/26 职场文书
上课迟到检讨书范文
2015/05/06 职场文书
小学教育见习总结
2015/06/23 职场文书
2019公司管理制度
2019/04/19 职场文书
Go并发4种方法简明讲解
2022/04/06 Golang
Python保存并浏览用户的历史记录
2022/04/29 Python