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;
}
相关推荐
西岭千秋雪_18 分钟前
设计模式の单例&工厂&原型模式
java·单例模式·设计模式·简单工厂模式·工厂方法模式·抽象工厂模式·原型模式
Samson Bruce12 小时前
【创建模式-蓝本模式(Prototype Pattern)】
开发语言·javascript·原型模式
mo47762 天前
JS中的原型链与继承
开发语言·javascript·原型模式
lzz的编码时刻4 天前
原型模式(Prototype Pattern)——对象克隆、深克隆与浅克隆及适用场景
java·设计模式·原型模式
夜空晚星灿烂5 天前
C#设计模式--原型模式(Prototype Pattern)
设计模式·c#·原型模式
huaqianzkh8 天前
原型模式的理解和实践
java·设计模式·原型模式
博风8 天前
设计模式:16、原型模式
设计模式·原型模式
wayhome在哪10 天前
JS的魔法三角:constructor、prototype与__proto__
开发语言·javascript·原型模式
请你打开电视看看10 天前
创建型模式-原型模式
原型模式