std::ios_base::precision
来自cppreference.com
该页由英文版wiki使用Google Translate机器翻译而来。
该翻译可能存在错误或用词不当。鼠标停留在文本上可以看到原版本。你可以帮助我们修正错误或改进翻译。参见说明请点击这里. |
streamsize precision() const; |
(1) | |
streamsize precision( streamsize new_precision ); |
(2) | |
管理某些数字输出转换的精度(即有多少位数字生成).
1) 原文:
Manages the precision (i.e. how many digits are generated) of certain numeric output conversions.
返回当前的精度.
2) 设置给定的精度.
原文:
Sets the precision to the given one.
目录 |
[编辑] 参数
new_precision | - | 新的精度设置
|
[编辑] 返回值
之前,调用该函数的精确度
原文:
the precision before the call to the function
[编辑] 示例
本章尚未完成 原因:暂无示例 |
[编辑] 另请参阅
manages field width (公共成员函数) |