作为可变参数模板的结构化参数
structured arguments as variadic template
我有一个方法需要两个参数:一个别名(字符串)和一个对象(任何类型)。
现在我想要一个(模板)方法获取这些对中的 n 个;语法应如下所示:
append (
{ "first", int { 3 } },
{ "second", double { 2. } },
{ "third", std::string { "test" } }
);
我目前做的是:
void append() {}
template<typename Type>
void append(std::string str, Type obj)
{
std::cout << "str: " << str << " type: " << obj << "\n";
}
template<typename Type, typename... Args>
void append(std::string str, Type t, Args... args)
{
append(str, t);
append(args...);
}
int main()
{
append("first", 1, "second", 2., "third, "test");
}
这使得写这样的东西成为可能
append (
"first", int { 3 },
"second", double { 2. },
"third", std::string { "test" }
);
但在我看来,如果我可以像上面示例中那样使用花括号,这将使代码更具可读性。
我尝试做的是使用模板 std::pair 但我得到的只是编译器错误:
main.cpp:9:6: note: template<class Type> void
append(std::initializer_list<std::pair<std::basic_string<char>, Type> >)
void append(std::initializer_list<std::pair<std::string, Type>> pair)
^
main.cpp:9:6: note: template argument deduction/substitution failed:
main.cpp:23:22: note: couldn't deduce template parameter ‘Type’
append({"first", 1});
有人有想法吗?
您可能可以使用 boost::assign 或类似的东西:
class t_Append final
{
private: ::std::ostream & m_where;
public: explicit
t_Append
(
::std::ostream & where
) noexcept
: m_where{where}
{
return;
}
public: explicit
t_Append
(
t_Append && other
) noexcept
: m_where{other.m_where}
{
return;
}
public: template
<
typename x_Object
> auto
operator ()
(
char const * const psz_str
, x_Object const & object
) &&
{
m_where << "str: " << psz_str << " type: " << object << "\n";
return t_Append{::std::move(*this)};
}
};
inline auto
Append(::std::ostream & where)
{
return t_Append{where};
}
用法:
Append(::std::cout)
("first", int{3})
("second", double{2.0})
("third", ::std::string{"test"});
我有一个方法需要两个参数:一个别名(字符串)和一个对象(任何类型)。
现在我想要一个(模板)方法获取这些对中的 n 个;语法应如下所示:
append (
{ "first", int { 3 } },
{ "second", double { 2. } },
{ "third", std::string { "test" } }
);
我目前做的是:
void append() {}
template<typename Type>
void append(std::string str, Type obj)
{
std::cout << "str: " << str << " type: " << obj << "\n";
}
template<typename Type, typename... Args>
void append(std::string str, Type t, Args... args)
{
append(str, t);
append(args...);
}
int main()
{
append("first", 1, "second", 2., "third, "test");
}
这使得写这样的东西成为可能
append (
"first", int { 3 },
"second", double { 2. },
"third", std::string { "test" }
);
但在我看来,如果我可以像上面示例中那样使用花括号,这将使代码更具可读性。
我尝试做的是使用模板 std::pair 但我得到的只是编译器错误:
main.cpp:9:6: note: template<class Type> void
append(std::initializer_list<std::pair<std::basic_string<char>, Type> >)
void append(std::initializer_list<std::pair<std::string, Type>> pair)
^
main.cpp:9:6: note: template argument deduction/substitution failed:
main.cpp:23:22: note: couldn't deduce template parameter ‘Type’
append({"first", 1});
有人有想法吗?
您可能可以使用 boost::assign 或类似的东西:
class t_Append final
{
private: ::std::ostream & m_where;
public: explicit
t_Append
(
::std::ostream & where
) noexcept
: m_where{where}
{
return;
}
public: explicit
t_Append
(
t_Append && other
) noexcept
: m_where{other.m_where}
{
return;
}
public: template
<
typename x_Object
> auto
operator ()
(
char const * const psz_str
, x_Object const & object
) &&
{
m_where << "str: " << psz_str << " type: " << object << "\n";
return t_Append{::std::move(*this)};
}
};
inline auto
Append(::std::ostream & where)
{
return t_Append{where};
}
用法:
Append(::std::cout)
("first", int{3})
("second", double{2.0})
("third", ::std::string{"test"});