我有一个功能,我希望能够接受const vector<const string>
,但我也希望用户也能够传递vector<string>
。我以为我可以让函数参数成为对const的引用,并且仍然会接受非const向量,但事实并非如此。这是一个例子:
void test(const vector<const string> &v)
{
return;
}
int main( int argc, char *argv[] )
{
vector<string> v;
test(v);
return 0;
}
我收到的错误是:
error C2664: 'test' : cannot convert parameter 1 from 'std::vector<_Ty>' to 'const std::vector<_Ty> &'
为什么示例不起作用?您如何建议我使我的功能正常工作,以便用户可以通过const vector<const string>
和vector<string>
?感谢
答案 0 :(得分:0)
这post也许可以帮到你。但是你可以用这种(可怕的)方式强行打电话
test(*reinterpret_cast<vector<const string>*>(&v));
在某种程度上也说明了为什么不可能进行自动转换。你可以打破容器的规则:
vector<string> v = {"a", "b"};
vector<const string>& vc = v; //not allowed, of course
v[0].clear(); //<-- but also vc[0] is cleared