boost::format() 输出运算符

发布于 2024-10-19 13:53:20 字数 401 浏览 2 评论 0原文

我需要编写一个类,它将通过运算符接受 boost::format() ,就像 cout 那样:

cout << boost::format("some string; some param = %d\n") % someValue;

运算符的参数必须是哪种类型? 这样该类就会这样声明:

class Output
{
    Output& operator<<(... format);
}
int main()
{
    Output output;
    output << boost::format("...");
}

谢谢。

I need to write the class which will accept boost::format() through the operator like cout does:

cout << boost::format("some string; some param = %d\n") % someValue;

Which type of operator's parameter must be?
So that the class will be declared like this:

class Output
{
    Output& operator<<(... format);
}
int main()
{
    Output output;
    output << boost::format("...");
}

Thanks.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

债姬 2024-10-26 13:53:20

boost::format 是您想要的类型。它有一个 str() 成员来获取 std::string。

boost::format is the type you want. It has a str() member to get a std::string.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文