- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我想出了我自己的小类,叫做 TinyVector。现在我正在尝试在其上使用 std::inner_product。但我无法让它工作,我不明白为什么这不起作用。我正在使用 Visual Studio 2012。
#include <iostream>
#include <vector>
#include <numeric>
using namespace std;
template<class T, int N>
class TinyVector {
public:
TinyVector() { data = vector<T>(N, 0); }
explicit TinyVector(const T initVal) { data = vector<T>(N, initVal); }
~TinyVector() { data.clear(); }
inline T& operator[](int i) { return data[i]; }
inline T operator[](int i) const { return data[i]; }
inline vector<T>::const_iterator begin() const { return data.begin(); } //Line 15
inline vector<T>::const_iterator end() const { return data.end(); } //Line 16
private:
vector<T> data;
};
template<class T, int N>
inline double dot(const TinyVector<T,N>& A, const TinyVector<T,N>& B)
{
return inner_product(A.begin(), A.end(), B.begin(), 0.0);
}
int main()
{
TinyVector<double, 10> Ty;
for (int i = 0; i < 10; ++i)
Ty[i] = i;
cout << dot(Ty,Ty) << endl;
}
编译器告诉我:语法错误:缺少“;”在第 15 行的标识符“开始”之前。缺少类型说明符 - 假定为 int。注意:C++ 不支持第 15 行的 default-int。语法错误:缺少“;”在第 16 行的标识符“end”之前。缺少类型说明符 - 假定为 int。注意:C++ 不支持第 16 行的 default-int。
但是改变vector<T>::const_iterator
进入vector::const_iterator
似乎不是要走的路。也将其更改为“自动”不起作用。这给了我“预期的尾随返回类型”。如果我删除第 15,16 和 17 行并将 A.begin() 替换为 A.data.begin() 和接下来的两个参数,那么一切都很好。但为什么我的原始代码不起作用,我怎样才能让它起作用?
最佳答案
你需要写
inline typename vector<T>::const_iterator begin() const { return data.begin(); } //Line 15
^^^^^^^^
这是因为 vector<T>::const_iterator
是一个依赖名称(它依赖于类型参数 T
)因此需要告诉编译器 vector<T>::const_iterator
是一种类型(而不是,比如说,enum
值或静态数据成员)。
关于c++ - 在我自己的类上使用 std::inner_product,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12974007/
据称内联 std::inner_product() 不会内联 gcc 编译器 inline T inner_product(T1 first1, T1 last1, T2 first2, T ini
我想出了我自己的小类,叫做 TinyVector。现在我正在尝试在其上使用 std::inner_product。但我无法让它工作,我不明白为什么这不起作用。我正在使用 Visual Studio 2
看来我在这里做的事情非常错误。你能帮助我吗?目的是将 inner_product 用于复杂 vector 。 #include #include #include #include using n
考虑以下场景: std::vector a {1, 2, 3}; std::vector b {1, 2, 3, 4}; auto it = b.begin(); auto res = std::in
在数字滤波 C++ 应用程序中,我使用 std::inner_product (使用 std::vector 和 std::deque )为每个数据样本计算滤波器系数和输入数据之间的点积。在分析我的应
我知道如果您处理两个不同大小的数组,std::inner_product 算法会出现问题。是否有另一种标准库算法可以处理不同大小的数组,例如通过自动使用两个数组大小中较小的一个? 最佳答案 实现起来并
这是我天真的点积实现: float simple_dot(int N, float *A, float *B) { float dot = 0; for(int i = 0; i <
下面的 C++ 程序应该返回一个严格的正值。但是,它返回 0。 会发生什么?我怀疑是 int-double 转换,但我不知道为什么以及如何。 #include #include #include
我正在尝试创建一个函数来计算标准偏差。 我尝试使用 std::inner_product和用于内部产品 op1 和 op2 的 lambda 表达式来修改 std::inner_product 的操作
以下代码: $ cat test02.cpp #include #include #include #include #include struct myadd : public s
是否可以将 C++ 中的 std::inner_product() 与 omp.h 库并行化?不幸的是,我不能使用在较新版本的 gcc 中可用的 __gnu_parallel::inner_produ
我无法理解如何使用 inner_product结合 std::vector和一个 std::vector> .给定,例如 和 ,> , 我想要 inner_product生产 2* + 3* = +
我想做这样的事情: vector v; v.push_back(0); v.push_back(1); v .transform([](auto i) { return i + 2; })
我想为一个奇怪的问题寻求帮助。对于从网上获得的关于矩阵的代码,我可以在 g++ 上编译和运行,但无法在 VC++ 2008 上构建。vc++ 的构建错误是 ------ Build started:
我对 std::inner_product() 与手动点积计算相比如何执行很感兴趣,所以我做了一个测试。 std::inner_product() 比手动实现快 4 倍。我觉得这很奇怪,因为没有那么多
今天,我想分享一些在尝试实现这个简单操作时让我大吃一惊的事情: 我发现了执行相同操作的不同方法: 通过使用 std::inner_product。 实现谓词并使用 std::accumulate 函数
我是一名优秀的程序员,十分优秀!