我有一个棘手的情况。它的简化形式是这样的
class Instruction
{
public:
virtual void execute() { }
};
class Add: public Instruction
{
private:
int a;
int b;
int c;
public:
Add(int x, int y, int z) {a=x;b=y;c=z;}
void execute() { a = b + c; }
};
然后在一节课上,我做了类似的事情......
void some_method()
{
vector<Instruction> v;
Instruction* i = new Add(1,2,3)
v.push_back(*i);
}
在另一个班级...
void some_other_method()
{
Instruction ins = v.back();
ins.execute();
}
他们以某种方式共享这个指令向量。我关心的是我执行“执行”功能的部分。它会起作用吗?它会保留它的 Add 类型吗?