实战c++中的string系列–指定浮点数有效数字并转为string

还是处于控件显示的原因,比如说要显示文件的大小,我们从服务器可以获得这个文件的总bytes。这样就需要我们根据实际情况是显示bytes、kb、mb等单位。

常用的做法就是把num_bytes/1024,这个时候往往会得到浮点型,浮点型转string也没问题,但是如果你需要保留这个浮点型的一位或是几位小数,怎么操作会方便快捷呢?

你进行了相关搜索,但是很多人给你的回答都是要么使用cout, 要么使用printf进行格式化输出。

我们使用的是stringstream

Stringstreams allow manipulators and locales to customize the result of these operations so you can easily change the format of the resulting string

#include <iomanip>#include <locale>#include <sstream>#include <string> // this should be already included in <sstream>// Defining own numeric facet:class WithComma: public numpunct<char> // class for decimal numbers using comma instead of point{protected:char do_decimal_point() const { return ‘,’; } // change the decimal separator};// Conversion code:double Number = 0.12;// Number to convert to stringostringstream Convert;locale MyLocale( locale(), new WithComma);// Crate customized localeConvert.imbue(MyLocale);// Imbue the custom locale to the stringstreamConvert << fixed << setprecision(3) << Number; // Use some manipulatorsstring Result = Convert.str(); // Give the result to the string// Result is now equal to “0,120”

setprecision 控制输出流显示浮点数的有效数字个数 ,如果和fixed合用的话,可以控制小数点右面的位数 但是这里需要注意的是头文件:

#include <iomanip>

流过泪的眼睛更明亮,滴过血的心灵更坚强!

实战c++中的string系列–指定浮点数有效数字并转为string

相关文章:

你感兴趣的文章:

标签云: