3

这是给定的:

boost::format greeting("%s (Greeting)");
boost::format name("%s (Name)");

'greetingwithname' 应该组合并重用 'greeting' 和 'name' 以便它等价于:

boost::format greetingwithname("%s (Greeting) %s (Name)");
// looking for solution to like boost::format greetingwithname = greeting + name;

我如何/从多个 boost:format 对象创建 boost::format 对象的最佳方法是什么?

4

1 回答 1

0

无法连接boost::format对象,但正如@sehe 评论的那样,您可以连接格式字符串并从中创建格式对象。

于 2019-03-20T16:20:00.937 回答