我如何使用列表库指向数组?

时间:2014-12-20 13:02:56

标签: c++ list

我想为每个链接指向数组(为每个链接创建)。我可以用列表库做到这一点。第三行是否正确?

#include <iostream>
#include <list>

class A{
 list<int> b;
 list<b> *c;// for use every link point a created array    
}

2 个答案:

答案 0 :(得分:1)

在C ++中,您使用迭代器指向列表:

list<int>::iterator c;

您可以使用

初始化迭代器
c = b.begin();

答案 1 :(得分:0)

问题有点不清楚,您可以通过

指向每个列表的数组(如您所说)
list<list<int>> listOfList;

或更确切地说,您可以通过

指向每个链接的数组
list<int *> listOfArray; 

并且你的第三行不正确。