标签: c++
我是C ++的新手;这是我的问题。 DataInterface是定义的结构。 我想创建Datainterface_1,Datainterface_2,Datainterface_3作为现有DataInterface的实例。怎么做。 我写了以下内容:
for (int i = 0; i < 3; ++i) { DataInterface* Datainterface_$i = .....; }
它不起作用。 有什么想法吗?
答案 0 :(得分:0)
使用诸如std::vector或std::array之类的容器来保存多个实例。