Prototype Pattern

Prototype Pattern

Intent : Use prototype instances to specify the type of objects to be created, and create new objects by copying these prototypes.
Main issue addressed: Dynamically create and delete prototypes at runtime.

used in qt:

QTableWidgetItem *QTableWidgetItem::clone() const

some codes:

#include <iostream>
#include <memory>  // For std::unique_ptr
#include <string>

// Prototype class template

template <typename T>
class Prototype {
public:

    virtual ~Prototype() = default;

    // Virtual method to clone the object
    virtual std::unique_ptr<T> clone() const = 0;

    // A method to display object information (can be customized)
    virtual void display() const = 0;
};

// ConcretePrototype class template

class ConcretePrototype : public Prototype<ConcretePrototype> {
private:
    std::string name;

public:
    explicit ConcretePrototype(const std::string& name) : name(name) {}

    // Override the clone function to return a copy of the current object
    std::unique_ptr<ConcretePrototype> clone() const override {
        return std::make_unique<ConcretePrototype>(*this); // Create a new object as a copy of the current one
    }

    void display() const override {
        std::cout << "ConcretePrototype name: " << name << std::endl;
    }
};
int main() {
    // Create an original prototype object
    auto original = std::make_unique<ConcretePrototype>("Original");

    // Display the original object
    original->display();

    // Clone the object
    auto clone1 = original->clone();
    clone1->display(); // Display the cloned object

    // Clone again
    auto clone2 = original->clone();
    clone2->display(); // Display another cloned object

    return 0;
}
相关推荐
workflower17 小时前
CHAIN OF RESPONSIBILITY(职责链)—对象行为型模式
需求分析·责任链模式·uml·原型模式·软件需求·统一建模语言
power-辰南19 小时前
设计模式之原型模式
原型模式
果冻~1 天前
构造函数的原型&原型链
开发语言·javascript·原型模式
计算机小混子1 天前
C++实现设计模式---原型模式 (Prototype)
c++·设计模式·原型模式
勇敢一点♂1 天前
设计模式学习手册(四)(原型模式)
学习·设计模式·原型模式
*猪耳朵*3 天前
Java 原型模式、建造者模式、单例模式
java·建造者模式·原型模式·設計模式
胖虎14 天前
iOS中的设计模式(二)- 原型模式
设计模式·原型模式
angen20185 天前
二十三种设计模式-原型模式
设计模式·原型模式
还是大剑师兰特6 天前
面试题: 对象继承的方式有哪些
开发语言·javascript·原型模式
三次元1117 天前
JS中函数基础知识之查漏补缺(写给小白的学习笔记)
开发语言·前端·javascript·笔记·ecmascript·原型模式