gpt4 book ai didi

c++ - 带有可变模板参数的 boost::format

转载 作者:可可西里 更新时间:2023-11-01 16:59:15 30 4
gpt4 key购买 nike

假设我有一个类似 printf 的函数(用于日志记录)利用完美转发:

template<typename... Arguments>
void awesome_printf(std::string const& fmt, Arguments&&... args)
{
boost::format f(fmt);
f % /* How to specify `args` here? */;
BlackBoxLogFunction(boost::str(f).c_str());
}

(我没有编译这个但我的实际功能遵循这个指南)

如何将可变参数“展开”到 boost::format 变量 f 中?

最佳答案

只是总结 void.pointer's solution和建议的提示 by Praetorian , T.C.Jarod42 , 让我提供最终版本 ( online demo )

#include <boost/format.hpp>
#include <iostream>

template<typename... Arguments>
std::string FormatArgs(const std::string& fmt, const Arguments&... args)
{
boost::format f(fmt);
std::initializer_list<char> {(static_cast<void>(
f % args
), char{}) ...};

return boost::str(f);
}

int main()
{
std::cout << FormatArgs("no args\n"); // "no args"
std::cout << FormatArgs("%s; %s; %s;\n", 123, 4.3, "foo"); // 123; 4.3; foo;
std::cout << FormatArgs("%2% %1% %2%\n", 1, 12); // 12 1 12
}

此外,as it was noted by T.C. , 使用 fold expression语法,自 C++17 起可用,可以用更简洁的方式重写 FormatArgs 函数

template<typename... Arguments>
std::string FormatArgs(const std::string& fmt, const Arguments&... args)
{
return boost::str((boost::format(fmt) % ... % args));
}

关于c++ - 带有可变模板参数的 boost::format,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25859672/

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