我有一系列清单:
int* adj;
std::list<int> adj[n];//where n is the size of the array
我的问题是,当我需要adj[v].size()
,其中v是我当前所在的索引时,我收到错误:
request for member 'size' in '((GenericClass*)this)->GenericClass::adj', which is of non-class type 'int*' for(int i=0; i<adj.size(); ++i)
我同样在我试图在STL List类中访问的其他函数中遇到此问题。我也尝试创建一个迭代器:
for(std::list<int>::iterator it=adj[v].begin(); it != adj[v].end(); ++it)
但我遇到了前面提到的同样的问题。
编辑:在我班级的私人课程中,我有: int * adj;
然后在我的一个函数中,在我从用户获得数组的大小之后,我有
std::list<int> adj[n]
行。
编辑2:
我现在将我的私人内容改为:typedef std::list<int> IntList;
typedef std::vector<IntList> AdjVec;
AdjVec adj;
我在public中有一个函数,int GenericClass :: search(AdjVec adj,int v) 而且我收到错误
'AdjVec' has not been declared
int search(AdjVec adj, int v);
^
GenericClass.cc:234:20: error: no matching function for call to 'GenericClass::search(GenericClass::AdjVec&, int&)'
u= search(adj, v);
答案 0 :(得分:4)
您正试图访问size()
上的成员方法int
。
int* adj;
您已为变量adj
重新定义(或未定义列表)。编译器认为您正在谈论int* adj
而不是std::list<int> adj[n];
摆脱第一个定义并使用第二个定义。
修改强>
好像你不知道n
在编译时会是什么,adj
是你的一个类的成员。在这种情况下,只需使用vector
并在运行时动态调整大小。
// In your header.
typedef std::list<int> IntList;
typedef std::vector<IntList> AdjVec;
AdjVec adj;
// In your cpp, when you know what 'n' is.
adj.resize(n);
adj[0].size();