- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
您对我的代码有何看法?
#ifndef PROTOTYPE_H
#define PROTOTYPE_H
#include <map>
// =============================================
class prototype
{
public:
prototype();
~prototype();
virtual prototype* clone(prototype* ) = 0;
virtual void initialize(const bool&, const int&,
const std::string& ) = 0;
virtual bool getHasTurbo() const = 0 ;
virtual int getCapacity() const = 0;
virtual const std::string& getCategory() const = 0;
virtual void display() const = 0;
};
// =============================================
#endif
#include "Prototype.h"
// =============================================
prototype::prototype()
{
}
// =============================================
prototype::~prototype()
{
}
#ifndef VEHICLE_PROTOTYPE_H
#define VEHICLE_PROTOTYPE_H
#include "Prototype.h"
#include <string>
// ==============================================
class vehiclePrototype : public prototype
{
public:
vehiclePrototype();
vehiclePrototype(const bool&, const int&,
const std::string&);
vehiclePrototype(prototype* );
~vehiclePrototype();
prototype* clone(prototype* );
void initialize(const bool&, const int&,
const std::string& );
bool getHasTurbo() const;
int getCapacity() const;
const std::string& getCategory() const;
void display() const ;
private:
int capacity;
bool hasTurbo;
std::string category;
};
// =============================================
#endif
#include "VehiclePrototype.h"
#include <iostream>
// =============================================
vehiclePrototype::vehiclePrototype()
: capacity(0), hasTurbo(bool() ),
category(std::string() )
{
}
// =============================================
vehiclePrototype::vehiclePrototype(const bool& userHasTurbo,
const int& userCapacity,
const std::string& userCategory)
{
hasTurbo = userHasTurbo;
capacity = userCapacity;
category = userCategory;
}
// ============================================
vehiclePrototype::vehiclePrototype(prototype* rhs)
{
hasTurbo = rhs->getHasTurbo();
capacity = rhs->getCapacity();
category = rhs->getCategory();
}
// ============================================
vehiclePrototype::~vehiclePrototype()
{
}
// =============================================
prototype* vehiclePrototype::clone(prototype* myPrototype)
{
return new vehiclePrototype(myPrototype);
}
// =============================================
void vehiclePrototype::initialize(const bool& userHasTurbo,
const int& userCapacity,
const std::string& userCategory)
{
hasTurbo = userHasTurbo;
capacity = userCapacity;
category.assign(userCategory);
}
// =============================================
bool vehiclePrototype::getHasTurbo() const
{
return hasTurbo;
}
// =============================================
int vehiclePrototype::getCapacity() const
{
return capacity;
}
// =============================================
const std::string& vehiclePrototype::getCategory() const
{
return category;
}
// =============================================
void vehiclePrototype::display() const
{
std::cout << std::boolalpha
<< "Car Specification\n"
<< "Vehicle Category Type : " << getCategory() << "\n"
<< "Vehicle Capacity : " << getCapacity() << "\n"
<< "Vehicle Turbo : " << getHasTurbo() << "\n";
}
// =============================================
#ifndef PROTOTYPE_MANAGER_H
#define PROTOTYPE_MANAGER_H
#include <map>
#include <vector>
class prototype;
// =============================================
class prototypeManager
{
public:
typedef std::map<int, prototype* > prototypeMap;
typedef std::map<int, prototype* >::iterator prototypeMapIte;
typedef std::vector<prototype*> prototypeVec;
public:
prototypeManager();
~prototypeManager();
prototype* createVehicle(int, const bool&,
const int&, const std::string& );
void populateVehicle();
// To create a specific instance of a class
// without coding the class
void registerVehicle( const bool&,
const int&, const std::string&);
void registerVehicle(const int&, const bool&,
const int&, const std::string&);
void unRegisterVehicle(int);
private:
static int vehicleType;
prototypeMap registry;
// Static Product
// Empty Prototype
prototype* obj;
prototype* sedan, *superCar, *f1Car;
// Dynamic Product
prototypeVec cont;
};
// =============================================
#endif
#include "PrototypeManager.h"
#include "VehiclePrototype.h"
#include <iostream>
// =============================================
int prototypeManager::vehicleType = 1;
// =============================================
prototypeManager::prototypeManager()
: registry(prototypeMap()), obj(new vehiclePrototype),
sedan(new vehiclePrototype(false, 1600, "B Class") ),
superCar(new vehiclePrototype(true, 3000, "D Class") ),
f1Car(new vehiclePrototype(true, 6000, "F Class") ),
cont(prototypeVec() )
{
populateVehicle();
}
// =============================================
prototypeManager::~prototypeManager()
{
delete obj;
delete sedan;
delete superCar;
delete f1Car;
obj = 0;
sedan = 0;
superCar = 0;
f1Car = 0;
for (size_t loop = 0;loop<cont.size();++loop)
{
delete cont[loop];
cont[loop] = 0;
}
}
// =============================================
prototype* prototypeManager::createVehicle(
int uservehicleType,
const bool& userHasTurbo,
const int& userCapacity,
const std::string& userCategory)
{
prototypeMapIte myIte = registry.find(uservehicleType);
prototype* instance = 0;
if (myIte == registry.end() )
{
// Register Vehicle
registerVehicle(uservehicleType, userHasTurbo,
userCapacity, userCategory);
myIte = registry.find(uservehicleType);
prototype* temp = myIte->second;
instance = obj->clone(temp);
instance->initialize(userHasTurbo, userCapacity,
userCategory);
}
else
{
prototype* temp = myIte->second;
instance = obj->clone(temp);
instance->initialize(userHasTurbo, userCapacity,
userCategory);
}
std::cout << "\nClone Vehicle\n";
return instance;
}
// =============================================
void prototypeManager::populateVehicle()
{
registry.insert(prototypeMap::value_type(vehicleType, sedan) );
++vehicleType;
registry.insert(prototypeMap::value_type(vehicleType, superCar) );
++vehicleType;
registry.insert(prototypeMap::value_type(vehicleType, f1Car) );
++vehicleType;
}
// =============================================
void prototypeManager::registerVehicle(
const bool& userHasTurbo,
const int& userCapacity,
const std::string& userCategory)
{
prototype* temp = new vehiclePrototype(userHasTurbo,
userCapacity, userCategory);
cont.push_back(temp);
registry.insert(prototypeMap::value_type(vehicleType, temp) );
++vehicleType;
std::cout << "\nRegister new Vehicle Type "
<<vehicleType << "\n";
}
// =============================================
void prototypeManager::registerVehicle(const int& userVehicleTpye,
const bool& userHasTurbo,
const int& userCapacity,
const std::string& userCategory)
{
prototype* temp = new vehiclePrototype(userHasTurbo,
userCapacity, userCategory);
cont.push_back(temp);
registry.insert(prototypeMap::value_type(userVehicleTpye, temp) );
std::cout << "\nRegister new Vehicle Type "
<<userVehicleTpye << "\n";
}
// =============================================
void prototypeManager::unRegisterVehicle(int vehicleType)
{
prototype* removePrototype = registry.find(vehicleType)->second;
registry.erase(vehicleType);
std::cout << "\nUnRegister Vehicle Type "
<< vehicleType << "\n";
}
// =============================================
#include <iostream>
using namespace std;
#include "Prototype.h"
#include "VehiclePrototype.h"
#include "PrototypeManager.h"
// =============================================
// =============================================
// =============================================
int main()
{
prototypeManager obj;
prototype* myCar;
myCar = obj.createVehicle(1, false, 1300, "B Class");
myCar->display();
myCar = obj.createVehicle(2, true, 3200, "D Class");
myCar->display();
myCar = obj.createVehicle(5, false, 2500, "E Class");
myCar->display();
obj.unRegisterVehicle(1);
myCar = obj.createVehicle(1, false, 1600, "B Class");
myCar->display();
return 0;
}
如何在 C++ 中动态加载?我读了 Gof 的书,但我不明白第三个后果(第 120 页)通过改变结构指定新对象。请解释。
谢谢。
最佳答案
What is your opinion about my code ?
这不是一个代码审查网站,问题和答案都是客观的,所以我只提几个代码问题。通常,您应该针对遇到的具体问题提出问题,并且只发布描述或重现问题所需的代码。
我能看到的唯一错误(在简单阅读之后)是 prototype
需要一个虚拟析构函数,否则通过基类指针删除派生类的实例是无效的(如 prototypeManager
的析构函数)。
在风格上,有一些不必要的代码。 prototype
不需要构造函数;隐式的就好了。它确实需要一个析构函数(虚拟的,如上所述);因为这将是空的,所以没有理由不将它内联到类声明中。在您的初始化列表中,category(std::string())
可能是 category()
, 或完全省略; hasTurbo(bool())
同样可以是hasTurbo()
, 或 hasTurbo(false)
如果你想明确。编辑:此外,在析构函数中删除指针后无需使它们无效。这些都不是特别糟糕(如果您必须遵循脑死亡的编码风格,有时是必要的),但它们确实使代码更难遵循。
How to dynamic loading in C++ ?
我不知道“动态加载”是什么意思,也不知道它与代码或原型(prototype)模式有何关系。也许如果您解释了您想要实现的目标,有人可以提供帮助。
I read the Gof book and i don;t understand the third consequences (pg 120) specifying new object by varying structure. Please explain.
假设你的版本和我一样,那段话说你可以将简单的对象组合成复杂的复合对象,只要复合对象正确实现了 Prototype 接口(interface),新对象就可以和旧对象一起使用。它没有详细介绍如何做到这一点,但 Composite 模式可能对某些应用程序有用。在您的示例中,您可以想象能够采用一些简单的组件(轮子、发动机、车门、毛茸茸的骰子等)并将它们组合成一辆新车;只要该车辆可以正确克隆,就可以像现有原型(prototype)一样使用。
关于C++ 原型(prototype)和动态加载,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3131302/
以下代码,我使用 chrome 浏览器控制台进行了检查: function A(){ this.a='a' } 这是一个构造函数。我已经将一个属性 b 赋给了 A 的原型(prototype)。
就目前而言,这个问题不适合我们的问答形式。我们希望答案得到事实、引用资料或专业知识的支持,但这个问题可能会引发辩论、争论、投票或扩展讨论。如果您觉得这个问题可以改进并可能重新打开,visit the
关闭。这个问题是opinion-based .它目前不接受答案。 想改进这个问题?更新问题,以便 editing this post 提供事实和引用来回答它. 5年前关闭。 Improve this
关闭。这个问题是opinion-based .它目前不接受答案。 想改进这个问题?更新问题,以便 editing this post 提供事实和引用来回答它. 3年前关闭。 Improve this
我已经开始阅读 The Pragmatic Programmer,我很喜欢并学习堆形式,但我很难理解示踪子弹和原型(prototype)之间的区别。跟踪项目符号是否像拥有应用程序的所有 View 但尚
尽管阅读了 StackOverflow 上的大多数文章,但我现在实际上对原型(prototype)非常困惑。 function Foo() { } Foo.prototype.speak = func
我正在阅读以下代码,并开始想知道 Rectangle.prototype = Object.create(Shape.prototype) 和 Rectangle.prototype = Shape.
我想知道它们之间的区别: childObj.prototype = Object.create(parentObj.prototype) 和 childObj.prototype = parentOb
这个问题在这里已经有了答案: Why wouldn't I use Child.prototype = Parent.Prototype rather than Child.prototype =
在 node.js 中导出原型(prototype)的首选方法是什么?您可以采用两种方法: 导出原型(prototype)本身 function A () { } module.exports = A
我正在学习 JavaScript,发现了两种分配原型(prototype)的方法。 第一个是A.prototype = B.prototype,第二个是A.prototype = new B() 例如
在一些构造函数的定义之后,例如 child ,我见过以下两种形式: Child.prototype = Parent.prototype; 或 Child.prototype = new Parent
我正在阅读一本关于 OOP javascript 的书,但被其中一个示例卡住了。 在示例代码的第一个版本中,Shape 的一个新实例构造函数被创建并且 toString方法被调用。 toString方
这个问题在这里已经有了答案: What should I connect to the child prototype property in JavaScript (2 个答案) 关闭 8 年前。
在进行原型(prototype)设计时,您在多大程度上放弃了最佳实践来支持代码和修复黑客攻击?当然,代码并不打算在完整的生产环境中保留。 补充:我正在研究一个用 Python 制作的相当大的半工作原型
我正在尝试使用 Prototype 更新隐藏表单字段的值。表单域: 我正在尝试使用原型(prototype)更新值: var additionalVal = ',2'; var itemId = $
我正在阅读How to Make a Javascript Library我发现了作者所说的一个观点: function _() { //Some obects and var
我想用一个新函数扩展“Number”类型,因此我必须定义一个原型(prototype)。当我想到这一点时,我得到了一堆问题: Number 是否既继承了 Object.prototype 又继承了 F
这里好像有区别... 假设我们有 function MyConstructor() {} MyConstructor 的[[Prototype]] 是Function.prototype,不是 MyC
有人建议 Derived.prototype = Object.create(Base.prototype); 优于 Derived.prototype = new Base(); (如 this S
我是一名优秀的程序员,十分优秀!