我刚刚在一些遗留代码中发现了对不同容器迭代器之间的 std::distance 的严重误用。类似于包含的代码。现在我担心有人可能在代码的其他部分犯了同样的错误。
有没有办法在编译或运行时检测到这种错误?
// bad code to explain the problem
std::vector<int> v1={1};
auto iterv1=v1.begin();
std::vector<int> v2=v1;
int nDist=std::distance(v2.begin(),iterv1); // error distance calculated between 2 containers