- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试将 adjacent_difference 与两种不同的迭代器类型一起使用。我创建的仿函数将 InputIterator 使用的类型作为参数,并返回 OutputIterator 使用的类型。我不明白为什么我包含的代码无法编译:
In file included from /usr/include/c++/4.9/numeric:62:0, from 4: /usr/include/c++/4.9/bits/stl_numeric.h: In instantiation of '_OutputIterator std::adjacent_difference(_InputIterator, _InputIterator, _OutputIterator, _BinaryOperation) [with _InputIterator = __gnu_cxx::__normal_iterator >; _OutputIterator = __gnu_cxx::__normal_iterator >; _BinaryOperation = {anonymous}::CheckOp]': 48:85: required from here /usr/include/c++/4.9/bits/stl_numeric.h:374:17: error: cannot convert '_ValueType {aka Test}' to 'float' in assignment *__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);
}
最佳答案
注意adjacent_difference
的描述(来自cppreference):
First, creates an accumulator
acc
whose type isInputIt
's value type, initializes it with*first
, and assigns the result to*d_first
.
这意味着输入和输出序列必须具有相同或至少兼容的类型。
关于c++ - 使用adjacent_difference编译错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43676011/
我想获得 vector 中相邻点之间的距离 vector : struct Point { double x, y, z; } vector adjacent_distances( vector po
在不创建额外容器的情况下对 std::adjacent_difference 结果应用某些操作(例如查找最小值)的最佳方法是什么? 编辑:手动循环是显而易见的方式,但 STL 不够。 一种方法是实现
考虑以下代码: int main() { std::vector time; time.push_back(std::chrono::steady_clock::now());
我正在调试过程中,缩小了一个问题的范围,如下所示。本质上,为什么第一行输出的是斐波那契数列,而第二行输出的全是0? prev 和 next 在这里究竟做什么? 为了您的方便,这里是极简代码 #incl
我是一名优秀的程序员,十分优秀!