const参数的方法不接受非const参数?

时间:2013-11-26 10:11:24

标签: c++ const parameter-passing pass-by-reference

此代码无法编译:

ErrorTolerantSearch e;
e.readStringsFromFile("test.txt");
e.buildQgramIndex(3);
vector<map<uint, uint>*> lists;
lists.push_back(&e._qgramIndex["ret"]); // ignore this, assume container not empty
lists.push_back(&e._qgramIndex["coo"]); // ignore this, assume container not empty
map<uint, uint> resunion = e.computeUnion(lists); // <-- this makes problems

这是标题

的一部分
class ErrorTolerantSearch {
 public:
  void readStringsFromFile(string fileName);
  void buildQgramIndex(uint  q);
  map<uint, uint> computeUnion(const vector<const map<uint, uint>*> & lists);
  map<string, map<uint, uint> > _qgramIndex;
};

这是编译器给出的错误:

ErrorTolerantSearchTest.cpp: In member function ‘virtual void ErrorTolerantSearchTest_computeUnion_Test::TestBody()’:
ErrorTolerantSearchTest.cpp:89:50: error: no matching function for call to ‘ErrorTolerantSearch::computeUnion(std::vector<std::map<unsigned int, unsigned int>*>&)’
ErrorTolerantSearchTest.cpp:89:50: note: candidate is:
In file included from ErrorTolerantSearchTest.cpp:36:0:
./ErrorTolerantSearch.h:56:19: note: std::map<unsigned int, unsigned int> ErrorTolerantSearch::computeUnion(const std::vector<const std::map<unsigned int, unsigned int>*>&)
./ErrorTolerantSearch.h:56:19: note:   no known conversion for argument 1 from ‘std::vector<std::map<unsigned int, unsigned int>*>’ to ‘const std::vector<const std::map<unsigned int, unsigned int>*>&’
make[1]: *** [ErrorTolerantSearchTest] Fehler 1

但问题是什么?我不懂。我从来没有遇到过通过引用将非const变量传递给带有const参数的函数的问题。

1 个答案:

答案 0 :(得分:5)

std::vector<const T>不等于std::vector<T>且无法转换为它。