开发平台(Platform): (Ex: VC++, GCC, Linux, ...)
GCC
额外使用到的函数库(Library Used): (Ex: OpenGL, ...)
#include <iostream>
#include <vector>
#include <string>
#include <map>
#include "ABC.h"
问题(Question):
请问要怎么动态的增加新的物件(class)?
喂入的资料(Input):
Node在ABC.h里是一个class定义.
预期的正确结果(Expected Output):
想要从一个txt档案输入所有物件的名称,
并能正常建立所有物件.
错误结果(Wrong Output):
手动key入都正常,
但不知道怎么动态建立...
程式码(Code):(请善用置底文网页, 记得排版)
void I(vector<Node*> & nodes)
{
Node * a = new Node("A");
Node * b = new Node("B");
Node * c = new Node("C");
...
nodes.push_back(a);
nodes.push_back(b);
nodes.push_back(c);
...