16

如何使用 Boost.Format 输出百分号本身?

IE:

boost::format msg("5% complete"); // <- how to actually output the percent sign

谢谢!

4

1 回答 1

24

简单地用另一个百分号逃避它

boost::format msg("5%% complete"); 
于 2012-11-26T17:25:19.973 回答