所以,我试图写一个这样的函数:
void append_to_stream(std::ostream &stream)
{ }
template <typename T, typename... Args>
void append_to_stream(std::ostream &stream, T first, Args&&... rest)
{
stream << first;
append_to_stream(stream, rest...);
}
并称之为:
append_to_stream(stream,
std::endl,
std::endl);
但这不起作用。我收到一个错误,提示函数“参数太多”。我已经把它缩小到我知道std::endl
是有罪的程度——可能是因为它是一个函数。我设法通过声明一个名为的结构endl
并为它定义<<operator
它来“解决”这个问题,以便它简单地调用std::endl
. 这有效,但感觉不是特别好。不能接受 std::endl 作为模板参数吗?该功能适用于其他类型。
编辑:这是错误:
src/log/sinks/file_sink.cpp:62:21: error: too many arguments to function ‘void log::sinks::append_to_stream(std::string&, Args&& ...) [with Args = {}, std::string = std::basic_string<char>]’
更新
试图让编译器推断出正确的模板参数@MooingDuck 建议可以使用以下形式的函数:
template<class e, class t, class a>
basic_ostream<e,t>&(*)(basic_ostream<e,t>&os) get_endl(basic_string<e,t,a>& s)
{
return std::endl<e,t>;
}
但是,这不会编译。
错误:
src/log/sinks/file_sink.cpp:42:28: error: expected unqualified-id before ‘)’ token
src/log/sinks/file_sink.cpp:42:53: error: expected initializer before ‘get_endl’
任何想法为什么?为了编译这个,我添加了using namespace std;