Ale*_*x F 10 c++ variadic-templates c++11
码:
#include <iostream>
void out()
{
}
template<typename T, typename... Args>
void out(T value, Args... args)
{
std::cout << value;
out(args...);
}
int main()
{
out("12345", " ", 5, "\n"); // OK
out(std::endl); // compilation error
return 0;
}
Run Code Online (Sandbox Code Playgroud)
构建错误:
g++ -O0 -g3 -Wall -c -fmessage-length=0 -std=c++11 -pthread -MMD -MP -MF"main.d" -MT"main.d" -o "main.o" "../main.cpp"
../main.cpp: In function ‘int main()’:
../main.cpp:17:15: error: no matching function for call to ‘out(<unresolved overloaded function type>)’
../main.cpp:17:15: note: candidates are:
../main.cpp:3:6: note: void out()
../main.cpp:3:6: note: candidate expects 0 arguments, 1 provided
../main.cpp:8:6: note: template<class T, class ... Args> void out(T, Args ...)
../main.cpp:8:6: note: template argument deduction/substitution failed:
../main.cpp:17:15: note: couldn't deduce template parameter ‘T’
Run Code Online (Sandbox Code Playgroud)
所以,一切都很好,除了std::endl.我该如何解决这个问题(使用"\n"除外)?
Emi*_*lia 12
std::endl 是一个重载函数,(在许多STL实现中,模板),编译器没有关于可供选择的信息.
把它当成 static_cast<std::ostream&(*)(std::ostream&)>(std::endl)
| 归档时间: |
|
| 查看次数: |
525 次 |
| 最近记录: |