我想为每个链接指向数组(为每个链接创建)。我可以用列表库做到这一点。第三行是否正确?
#include <iostream>
#include <list>
class A{
list<int> b;
list<b> *c;// for use every link point a created array
}
答案 0 :(得分:1)
在C ++中,您使用迭代器指向列表:
list<int>::iterator c;
您可以使用
初始化迭代器c = b.begin();
答案 1 :(得分:0)
问题有点不清楚,您可以通过
指向每个列表的数组(如您所说)list<list<int>> listOfList;
或更确切地说,您可以通过
指向每个链接的数组list<int *> listOfArray;
并且你的第三行不正确。