我试图将adjacent_difference用于两种不同的迭代器类型。我创建的仿函数将InputIterator使用的类型作为参数,并返回OutputIterator使用的类型。我不明白为什么我所包含的代码没有编译:
在/usr/include/c++/4.9/numeric:62:0中包含的文件中, 从4开始:/usr/include/c++/4.9/bits/stl_numeric.h:实例化' _OutputIterator std :: adjacent_difference(_InputIterator,_InputIterator, _OutputIterator,_BinaryOperation)[with _InputIterator = __gnu_cxx :: __ normal_iterator&gt ;; _OutputIterator = __gnu_cxx :: __ normal_iterator&gt ;; _BinaryOperation = {anonymous} :: CheckOp]': 48:85:从这里要求 /usr/include/c++/4.9/bits/stl_numeric.h:374:17:错误:无法转换 ' _ValueType {aka Test}'到'漂浮'在任务中 * __ result = __value;
// Example program
#include <iostream>
#include <string>
#include <numeric>
#include <vector>
struct Test
{
float first;
float second;
};
namespace{
class CheckOp {
public:
float operator()(Test x, Test y) const
{
float a = x.first - y.first;
float b = x.second - y.second;
return a + b;
}
};
}
int main()
{
std::vector<Test> testVec;
Test test1;
test1.first = 5.5F;
test1.second = 6.5F;
testVec.push_back(test1);
Test test2;
test2.first = 2.5F;
test2.second = 8.5F;
testVec.push_back(test2);
Test test3;
test3.first = 9.4F;
test3.second = 7.8F;
testVec.push_back(test3);
CheckOp checkOP;
std::vector<float> resultVec(testVec.size());
std::adjacent_difference(testVec.begin(), testVec.end(), resultVec.begin(), checkOP);
}
答案 0 :(得分:2)
请注意adjacent_difference
(来自cppreference)的说明:
首先,创建一个累加器
acc
,其类型为InputIt
的值类型,使用*first
对其进行初始化,然后将结果分配给*d_first
。< / p>
这意味着输入和输出序列必须具有相同或至少兼容的类型。