gpt4 book ai didi

c++ - STL 迭代器 std::distance() 错误

转载 作者:塔克拉玛干 更新时间:2023-11-02 23:11:17 32 4
gpt4 key购买 nike

我有这样两个类型定义:

typedef std::vector<int> Container;
typedef std::vector<int>::const_iterator Iter;

在我考虑的问题中,我对Container Input进行了一些操作,然后我想计算 std::distance(Input.begin(),itTarget) , 其中itTarget属于 Iter类型。但是我得到了这个编译器错误 no instance of function template "std::distance" matches the argument list ,并且仅在类型转换之后,即 std::distance(static_cast<Iter>(Input.begin()),itTarget)一切正常。

请问这是为什么?

最佳答案

std::distance是一个模板函数,它不能接受不同的参数。您需要使用:

std::distance(Input.cbegin(),itTarget);
^^

参见 std::vector::cbegin链接

关于c++ - STL 迭代器 std::distance() 错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17294114/

32 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com