std::basic_ios::fill
来自cppreference.com
该页由英文版wiki使用Google Translate机器翻译而来。
该翻译可能存在错误或用词不当。鼠标停留在文本上可以看到原版本。你可以帮助我们修正错误或改进翻译。参见说明请点击这里. |
CharT fill() const; |
(1) | |
CharT fill( CharT ch ); |
(2) | |
管理的填充字符用来垫的输出转换为指定的字段宽度.
1) 原文:
Manages the fill character used to pad the output conversions to the specified field width.
返回当前的填充字符
2) 设置填充字符
ch
的填充字符,返回以前的值 原文:
sets the fill character to
ch
, returns previous value of the fill character [编辑] 参数
ch | - | 要使用的字符作为填充字符
原文: the character to use as fill character |
[编辑] 返回值
前调用该函数填充字符.
原文:
the fill character before the call to the function.
[编辑] 示例
本章尚未完成 原因:暂无示例 |