将浮点数按照指定位数精度转换成字符串的C++函数

string  Preprocess::do_fraction( double  val, int  decplaces)
{
    
    
// int prec=numeric_limits<double>::digits10;
     char  DECIMAL_POINT = ' . '
    ostringstream 
out ;
    
// out.precision(prec);
     out << val;
    
string  str = out .str();
    size_t n
= str.find(DECIMAL_POINT);
    size_t eposion
= str.find( ' e ' );
    
if  (eposion == string ::npos)
    {
        
if ((n != string ::npos) && n + decplaces < str.size())
        {
            str[n
+ decplaces] = ' \0 ' ;
        }
        str.swap(
string (str.c_str()));

    }
    
    

    
return  str;
}
此函数源于网上,但是有一种情况疏于考虑:就是当待转换的double型变量为0.98765e-6这样的形式时,可能会出现错误。此函数将对还有幂指数的数据原样输出,不进行截断。

你可能感兴趣的:(C++)