以下代码给出了编译器错误(gcc-4.7 run with -std=c++11
):
#include <iostream>
#include <array>
template <typename T, int N>
std::ostream & operator <<(std::ostream & os, const std::array<T, N> & arr) {
int i;
for (i=0; i<N-1; ++i)
os << arr[i] << " ";
os << arr[i];
return os;
}
int main() {
std::array<double, 2> lower{1.0, 1.0};
std::cout << lower << std::endl;
return 0;
}
错误信息:
tmp6.cpp:在函数“int main()”中:tmp6.cpp:16:16:错误:无法将
“std::ostream {aka std::basic_ostream}”左值绑定到
“std::basic_ostream&&”在包含的文件中
/usr/include/c++/4.7/iostream:40:0,
来自 tmp6.cpp:1: /usr/include/c++/4.7/ostream:600:5: 错误:初始化 'std::basic_ostream<_CharT 的参数 1 ,
_Traits>& std::operator<<(std::basic_ostream<_CharT, _Traits>&&, const _Tp&) [with _CharT = char; _Traits = std::char_traits; _Tp = std::array]'<br>
当我摆脱模板函数声明并替换T
为double
和N
替换时2
,它编译得很好(编辑:离开T
并替换N
为 2 工作,但指定N=2
为默认参数N
不起作用。)。
- 有谁知道为什么 gcc 不能自动绑定这个?
<<
使用显式指定的模板参数调用运算符的语法是什么?
回答问题 2: operator<<<double, 2>(std::cout, lower);
编辑:以下函数也是如此,它仅以数组大小为模板:
template <int N>
void print(const std::array<double, N> & arr) {
std::cout << "print array here" << std::endl;
}
int main() {
std::array<double, 2> lower{1.0, 1.0};
print<2>(lower); // this works
print(lower); // this does NOT work
return 0;
}
非常感谢你的帮助。