Tao & Zen

Soli Deo Gloria!

导航

其他格式转string

template<typename T>
void PrettyFormat(T t1,string& s)
{
    ostringstream temp;
    temp/*<< setw(4)*/ <<t1;
    s =temp.str();
}
记得要加入
#include <iostream>
#include <string>
#include <fstream>
#include <iomanip>
#include <sstream>

其实用boost的lexcal_cast也可以,但那个慢一些。
有些地方提到了 sprintf, snprintf ,前一个不安全, 后一个不是标准。
strstream 也不是标准,所以还是这个好些。

ps:单独用(不用模版)那么每次使用完ostringstream后要 clean(),否则会有意外的结果。

posted on 2007-04-07 22:43  康国庆--thinkinlove  阅读(884)  评论(0编辑  收藏  举报