double dumpSize = (1024000000.1415926535897932384 * 1.0) / 1024 / 1024;
string tempStr = to_string(dumpSize);
std::stringstream ss;
ss << setiosflags(ios::fixed) << std::setprecision(1) << dumpSize; //此處1表明保存N爲小數
tempStr = ss.str();ios
#ifdef _UNICODE
typedef wstring tstring;
#else
typedef std::string tstring;
#endifci