创建型模式——原型模式

原型设计模式适用于以下情况:

• 当一个系统应该独立于它的产品创建、构成和表示时;

• 当要实例化的类是在运行时指定时,例如,通过动态装载;

• 为了避免创建一个与产品类层次平行的工厂类层次时;

• 当一个类的实例只能有几个不同状态组合中的一种时;

下面是一个原型模式的示例程序:

cpp 复制代码
#include <iostream>
#include <memory>
#include <string>

// Step 1: The Prototype Base Class
class DocTemplate {
public:
    virtual ~DocTemplate() = default;
    
    // The "Make a Copy" operation
    virtual std::unique_ptr<DocTemplate> clone() const = 0;
    
    virtual void show() const = 0;
    virtual void setContent(const std::string& text) = 0;
};

// Step 2: Concrete Prototype (Resume Template)
class Resume : public DocTemplate {
private:
    std::string header_ = "=== RESUME TEMPLATE ===\nFormat: 1-Page, Arial Font\n";
    std::string content_ = "[Empty]";

public:
    // Clone copies the entire existing object state
    std::unique_ptr<DocTemplate> clone() const override {
        return std::make_unique<Resume>(*this); 
    }

    void setContent(const std::string& text) override { content_ = text; }
    
    void show() const override {
        std::cout << header_ << "Content: " << content_ << "\n\n";
    }
};

// Step 3: Concrete Prototype (Invoice Template)
class Invoice : public DocTemplate {
private:
    std::string header_ = "=== INVOICE TEMPLATE ===\nFormat: Table layout, Tax included\n";
    std::string content_ = "[Empty]";

public:
    std::unique_ptr<DocTemplate> clone() const override {
        return std::make_unique<Invoice>(*this);
    }

    void setContent(const std::string& text) override { content_ = text; }
    
    void show() const override {
        std::cout << header_ << "Content: " << content_ << "\n\n";
    }
};

// Client Code
int main() {
    // 1. Set up our golden master templates
    std::unique_ptr<DocTemplate> masterResume = std::make_unique<Resume>();
    std::unique_ptr<DocTemplate> masterInvoice = std::make_unique<Invoice>();

    // 2. Someone wants to write a resume. We CLONE the template.
    std::unique_ptr<DocTemplate> johnsResume = masterResume->clone();
    johnsResume->setContent("John Doe - Software Engineer Experience...");

    // 3. Someone wants to write an invoice. We CLONE the template.
    std::unique_ptr<DocTemplate> clientInvoice = masterInvoice->clone();
    clientInvoice->setContent("Order #1024 - Total: $150.00");

    // 4. Display the results
    std::cout << "--- Printing Cloned Documents ---\n";
    johnsResume->show();
    clientInvoice->show();

    return 0;
}

程序运行结果如下:

shell 复制代码
$ g++ -o main main.cpp
$ ./main
--- Printing Cloned Documents ---
=== RESUME TEMPLATE ===
Format: 1-Page, Arial Font
Content: John Doe - Software Engineer Experience...

=== INVOICE TEMPLATE ===
Format: Table layout, Tax included
Content: Order #1024 - Total: $150.00
相关推荐
yyds_yyd_1008615 分钟前
1464. 数组中两元素的最大乘积(2026.07.27)
数据结构·c++·算法·leetcode
晚安code43 分钟前
干掉成山的 if-else:工厂造、策略选,一文讲透两个模式的配合
后端·设计模式
库克克2 小时前
【C++】set 与multiset
开发语言·c++
Mortalbreeze3 小时前
深入 Linux Socket 编程:端口号、网络字节序与 struct sockaddr 详解
linux·服务器·网络·c++
繁星蓝雨4 小时前
C++设计原理——异常处理
java·c++·异常处理·noexcept·throw·try catch
Kurisu_红莉栖5 小时前
关于相关问题的自我回答
c++
hansang_IR5 小时前
【题解】[AGC020E] Encoding Subsets
c++·算法·dp
我不管我就要叫小猪5 小时前
C/C++----命名空间
c语言·开发语言·c++
无忧.芙桃6 小时前
数据结构之堆
c语言·数据结构·c++·算法·
2301_777998346 小时前
Linux线程控制——从线程创建到线程分离(第三部分:线程等待 pthread_join)
linux·运维·服务器·c语言·c++