当前位置: 首页 > wzjs >正文

asp网站源码+access+机械惠州seo计费管理

asp网站源码+access+机械,惠州seo计费管理,帮人做淘宝网站骗钱,上海建筑设计目录 Prototype 原型模式动机 Motivation引例模式定义结构 Structure要点总结 Prototype 原型模式 动机 Motivation 在软件系统中,经常面临着“某些结构复杂的对象”的创建工作;由于需求的变化,这些对象经常面临着剧烈的变化,但…

目录

  • Prototype 原型模式
    • 动机 Motivation
    • 引例
    • 模式定义
    • 结构 Structure
    • 要点总结

Prototype 原型模式

动机 Motivation

  • 在软件系统中,经常面临着“某些结构复杂的对象”的创建工作;由于需求的变化,这些对象经常面临着剧烈的变化,但是它们却拥有比较稳定一致的接口。
  • 如何应对这种变化?如何向“客户程序(使用这些对象的程序)”隔离出“这些易变对象”,从而使得“依赖这些易变对象的客户程序”不随着需求改变而改变?

引例

  • 前文中分割器的例子,使用工厂方法模式是一种方式,下面介绍使用原型模式的方式。
// 抽象类
class ISplitter
{
public:virtual void split() = 0;virtual ISplitter* Clone() = 0;          // 通过克隆自己来创建对象virtual ~ISplitter() {}
};// 具体类 - 二进制分割器
class BinarySplitter : public ISplitter
{
private:std::string* binaryData;  // 假设有需要深拷贝的指针成员int dataSize;public:BinarySplitter() : binaryData(nullptr), dataSize(0) {}// 深拷贝构造函数BinarySplitter(const BinarySplitter& other) : dataSize(other.dataSize){if (other.binaryData != nullptr) {binaryData = new std::string(*other.binaryData);} else {binaryData = nullptr;}}~BinarySplitter() {delete binaryData;}void setData(const std::string& data) {if (binaryData == nullptr) {binaryData = new std::string(data);} else {*binaryData = data;}}virtual void split() override {std::cout << "Splitting binary data: " << (binaryData ? *binaryData : "") << std::endl;}virtual ISplitter* Clone() override {return new BinarySplitter(*this);  // 调用拷贝构造函数进行深拷贝}
};// 具体类 - 图片分割器
class PictureSplitter : public ISplitter
{
private:std::string* imageData;  // 假设有需要深拷贝的指针成员int width, height;public:PictureSplitter() : imageData(nullptr), width(0), height(0) {}// 深拷贝构造函数PictureSplitter(const PictureSplitter& other) : width(other.width), height(other.height){if (other.imageData != nullptr) {imageData = new std::string(*other.imageData);} else {imageData = nullptr;}}~PictureSplitter() {delete imageData;}void setImage(const std::string& data, int w, int h) {if (imageData == nullptr) {imageData = new std::string(data);} else {*imageData = data;}width = w;height = h;}virtual void split() override {std::cout << "Splitting picture (" << width << "x" << height << "): " << (imageData ? imageData->substr(0, 10) + "..." : "") << std::endl;}virtual ISplitter* Clone() override {return new PictureSplitter(*this);  // 调用拷贝构造函数进行深拷贝}
};// 具体类 - 视频分割器
class VideoSplitter : public ISplitter
{
private:std::string* videoData;  // 假设有需要深拷贝的指针成员double duration;public:VideoSplitter() : videoData(nullptr), duration(0) {}// 深拷贝构造函数VideoSplitter(const VideoSplitter& other) : duration(other.duration){if (other.videoData != nullptr) {videoData = new std::string(*other.videoData);} else {videoData = nullptr;}}~VideoSplitter() {delete videoData;}void setVideo(const std::string& data, double dur) {if (videoData == nullptr) {videoData = new std::string(data);} else {*videoData = data;}duration = dur;}virtual void split() override {std::cout << "Splitting video (" << duration << "s): " << (videoData ? videoData->substr(0, 10) + "..." : "") << std::endl;}virtual ISplitter* Clone() override {return new VideoSplitter(*this);  // 调用拷贝构造函数进行深拷贝}
};// MainForm
class MainForm
{ISplitter* prototype;public:MainForm(ISplitter* prototype)          // 通常由外部传入{this->prototype = prototype;}~MainForm() {delete prototype;}void Button1_Click(){ISplitter* splitter = prototype->Clone();     // 克隆原型    splitter->split();delete splitter;}
};int main() 
{// 创建原型对象BinarySplitter* binaryProto = new BinarySplitter();binaryProto->setData("Sample binary data");// 使用原型MainForm form1(binaryProto);form1.Button1_Click();// 另一个例子PictureSplitter* pictureProto = new PictureSplitter();pictureProto->setImage("Very long picture data...", 1920, 1080);MainForm form2(pictureProto);form2.Button1_Click();return 0;
}

模式定义

使用原型实例指定创建对象的种类,然后通过拷贝这些原型来创建新的对象。

结构 Structure

在这里插入图片描述
前文代码中的ISplitter对应图中的Prototype;BinarySplitter对应ConcretePrototype1,VideoSplitter对应ConcretePrototype2;MainForm对应Client

要点总结

  • Prototype原型模式同样用于隔离类对象的使用者和具体类型(易变类)之间的耦合关系,它同样要求这些“易变类”拥有“稳定的接口”。
  • 原型模式对于“如何创建易变类的实体对象”采用“原型克隆”的方法来做,它使得我们可以非常灵活地动态创建“拥有某些稳定接口”的新对象——所需工作仅仅是注册一个新类的对象(即原型),然后在任何需要的地方Clone。
  • 原型模式中的Clone方法可以利用某些框架中的序列化来实现深拷贝。

来源:极客班——C++设计模式入门

http://www.dtcms.com/wzjs/49872.html

相关文章:

  • 做IP授权的一般看什么网站seo查询工具
  • 济南富新网站建设seo的推广技巧
  • 昆山做网站的jofuns免费的编程自学网站
  • 承德网站建设咨询搜索引擎优化的核心本质
  • 公司执照办理流程搜索优化软件
  • 网络营销跟做网站有什么区别知乎营销平台
  • 软件技术和软件工程的区别seo是指什么职位
  • 网站开发技术难点企业关键词推广
  • 温州做网站费用免费外链网站seo发布
  • 手机网站 兼容公司网站推广方法
  • 微网站开发微网站建设宁波免费建站seo排名
  • 龙游网站建设上海培训机构排名
  • 河南多用户商城开发宁波seo网络优化公司
  • 网站备案信息下载黑锋网seo
  • web前段和网站开发小广告
  • 教做网站视频百度推广充值必须5000吗
  • 网站网站建设网页设计技能培训有哪些科目
  • 可靠的企业建站公司东莞网络推广排名
  • java ssm 新闻网站开发源码哪个浏览器看黄页最快夸克浏览器
  • 哪个网站可以做危险化学品供求杭州seo哪家好
  • 重庆市建设厅官方网站运营培训班有用吗
  • 制作网站程序seo排名推广
  • 0元购怎么在网站做推广平台排行榜app
  • 婚介网站建设软文云
  • 宁夏建设厅网站营销方法
  • 用树莓派做网站服务器口碑优化
  • 济宁建设网站首页怎么在百度上做广告
  • b to b 网站建站最近新闻摘抄
  • 网站信息维护方案江苏疫情最新消息
  • 吴忠北京网站建设网站怎么接广告