在Visual Studio '12中获得以下编译错误
error C3867: 'std::vector<_Ty>::at': function call missing argument list; use '&std::vector<_Ty>::at' to create a pointer to member line 39
CODE
Vector2dVector mVertices;
/// other code
for (int pointIndex = 0; pointIndex < points.size(); pointIndex++) {
mVertices.push_back(Vector2d(pointIndex * 2.0f, pointIndex * 3.0f ));
}
int size = mVertices.size();
CCPoint *pointArr = new CCPoint[size];
for(int i = 0; i < size; i++) {
Vector2d vec2 = mVertices.at[i]; //Line 39
//pointArr[i].x = vec2->GetX();
//pointArr[i].y = vec2->GetY();
}
答案 0 :(得分:2)
Vector2d vec2 = mVertices.at(i);
// ^ ^
您需要括号,而不是括号。 at
是一个成员函数。
答案 1 :(得分:2)
问题是你在这里有一个错字:
Vector2d vec2 = mVertices.at[i]; //Line 39
^ ^
您应该使用()
进行std::vector::at
方法调用,而不是[]
:
Vector2d vec2 = mVertices.at(i); //Line 39
另一种方法是使用std::vector::operator[]
重载(而不是at()
):
Vector2d vec2 = mVertices[i];
区别在于std::vector::at()
对向量索引执行边界检查,如果索引超出范围(防止缓冲区溢出),则抛出异常std::out_of_range
。
相反,如果使用std::vector::operator[]
,则禁用边界检查。
换句话说,使用std::vector::operator[]
你有更快的代码,但你没有对矢量索引进行运行时检查(所以你必须注意你的索引,以避免危险的缓冲区超支)。
(更准确地说,在Visual Studio中,如果_SECURE_SCL
设置为1
,则还会对std::vector::operator[]
进行检查。
答案 2 :(得分:1)
Vector2dVector::at
最有可能是函数而不是类型数组的字段:
Vector2d vec2 = mVertices.at(i); //Line 39