boost::format() 输出运算符
我需要编写一个类,它将通过运算符接受 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
boost::format
是您想要的类型。它有一个str()
成员来获取 std::string。boost::format
is the type you want. It has astr()
member to get a std::string.