gpt4 book ai didi

c++ - "Prototype pattern"和 "Virtual constructor"是相同的模式吗?

转载 作者:行者123 更新时间:2023-11-30 03:16:25 29 4
gpt4 key购买 nike

Virtual constructor - 实现 virtual function clone():

class X {
public:
virtual X* clone() {
return new X(*this);
}
};

和Prototype设计模式是同一个概念吗?

最佳答案

... mean the same concept as the Prototype design pattern?

不,它没有。 可克隆接口(interface) 只是Prototype Design Pattern 实现的一部分.

Prototype 的重点是有一个 Factory保存原型(prototype)实例的实例,并知道将哪个用作克隆源来创建新实例。

关于c++ - "Prototype pattern"和 "Virtual constructor"是相同的模式吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56349195/

29 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com