gpt4 book ai didi

c++ - 作为可变参数模板的结构化参数

转载 作者:行者123 更新时间:2023-11-30 03:17:53 25 4
gpt4 key购买 nike

我有一个方法需要两个参数:一个别名(字符串)和一个对象(任何类型)。

现在我想要一个(模板)方法获取这些对中的 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"});

关于c++ - 作为可变参数模板的结构化参数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55140284/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com