#include <boost/format.hpp>
using namespace boost;
using namespace std;
int _tmain(int argc, _TCHAR* argv[])
{
cout << format("%s: %d + %d = %d, \n") %"sum" %1 %2 %(1+2) ;
format fmt("(%1% + %2%) * %2% = %3%\n") ;//%X%表示参数的位置
fmt %2 %5 %((2+5)*5) ;
cout << fmt.str() ;
return 0 ;
}
boost——format格式化字符串
最新推荐文章于 2023-07-27 11:05:45 发布