std::ios_base::width
来自cppreference.com
该页由英文版wiki使用Google Translate机器翻译而来。
该翻译可能存在错误或用词不当。鼠标停留在文本上可以看到原版本。你可以帮助我们修正错误或改进翻译。参见说明请点击这里. |
streamsize width() const; |
(1) | |
streamsize width( streamsize new_width ); |
(2) | |
Manages the minimum number of characters to generate on certain output conversions.
1) Returns the current field width.
2)设置给定的精度.
原文:
Sets the precision to the given one.
目录 |
[编辑] 参数
new_width | - | new field width setting |
[编辑] 返回值
the field width before the call to the function
[编辑] 示例
本章尚未完成 原因:暂无示例 |
[编辑] 另请参阅
管理小数精度浮点运算 原文: manages decimal precision of floating point operations (公共成员函数) |