我想迭代一个临时的 valarray,但它不起作用。这是我的(非工作)代码:
#include <iostream>
#include <valarray>
int main()
{
using namespace std;
valarray<int> numerators = {99, 26, 25};
valarray<int> denominators = {9, 2, 5};
for (int i : numerators / denominators) { cout << i << ","; }
// lots of errors
return 0;
}
下面是我想要实现的最小工作示例,除了我不想定义像temp_array
.
#include <iostream>
#include <valarray>
int main()
{
using namespace std;
valarray<int> numerators = {99, 26, 25};
valarray<int> denominators = {9, 2, 5};
valarray<int> && temp_array = numerators / denominators;
for (int i : temp_array) { cout << i << ","; }
// prints 11,13,5,
return 0;
}
我的编译器是 g++ 版本 4.8.5(Red Hat 4.8.5-4)。我正在使用 -std=c++0x 标志进行编译。
我尝试了其他语法,例如for (auto&& i : temp_array)
and for (int const & i : temp_array)
,但它不起作用。