std::ios_base::setf
来自cppreference.com
该页由英文版wiki使用Google Translate机器翻译而来。
该翻译可能存在错误或用词不当。鼠标停留在文本上可以看到原版本。你可以帮助我们修正错误或改进翻译。参见说明请点击这里. |
fmtflags setf( fmtflags flags ); |
(1) | |
fmtflags setf( fmtflags flags, fmtflags mask ); |
(2) | |
设置的格式标记来指定的设置.
1) 原文:
Sets the formatting flags to specified settings.
的格式标志设置标志
2) 清除
mask
下,格式化标志清除的标志,并设置由flags
指定的那些。本质上,以下的操作被执行 (flags & mask)fl
定义内部格式化标志的状态.原文:
Clears the formatting flags under
mask
, and sets the cleared flags to those specified by flags
. Essentially the following operation is performed (flags & mask) where fl
defines the state of internal formatting flags.目录 |
[编辑] 参数
flags, mask | - | 新的格式设置。
mask 定义可以改变的标志,flags 定义那些被改变的标志应设置(其他将被清除)。这两个参数可以是以下常量的组合:
原文: new formatting setting. mask defines which flags can be altered, flags defines which flags of those to be altered should be set (others will be cleared). Both parameters can be a combination of the following constants:
|
[编辑] 返回值
之前,调用该函数的格式标记
原文:
the formatting flags before the call to the function
[编辑] 示例
本章尚未完成 原因:暂无示例 |
[编辑] 另请参阅
管理格式的标志 (公共成员函数) | |
clears specific format flag (公共成员函数) |