描述
它用于将 str 流的调整字段格式标志设置为内部。当 adjustfield 设置为 internal 时,通过在指定的内部点插入填充字符 (fill) 将输出填充到字段宽度 (width),对于数值,该点位于符号和/或数字基数与数字幅度之间。对于非数值,它等价于 right。
声明
以下是 std::internal 函数的声明。
ios_base& internal (ios_base& str);
参数
str- 格式标志受到影响的流对象。
返回值
它返回参数 str。
异常
Basic guarantee- 如果抛出异常,则 str 处于有效状态。
数据竞争
它修改了 str。对同一个流对象的并发访问可能会导致数据竞争。
示例
在下面的例子中解释了 std::internal 函数。
#include <iostream>
int main () {
int n = -77;
std::cout.width(6); std::cout << std::internal << n << '\n';
std::cout.width(6); std::cout << std::left << n << '\n';
std::cout.width(6); std::cout << std::right << n << '\n';
return 0;
}
让我们编译并运行上面的程序,这将产生以下结果——
- 77 -77 -77
相关用法
- C++ ios eof()用法及代码示例
- C++ ios manipulators boolalpha()用法及代码示例
- C++ ios Scientific用法及代码示例
- C++ ios manipulators left()用法及代码示例
- C++ ios fixed用法及代码示例
- C++ ios manipulators dec()用法及代码示例
- C++ ios manipulators uppercase()用法及代码示例
- C++ ios noshowbase用法及代码示例
- C++ ios manipulators hex()用法及代码示例
- C++ ios manipulators unitbuf()用法及代码示例
- C++ ios showpos用法及代码示例
- C++ ios manipulators nouppercase()用法及代码示例
- C++ ios manipulators skipws()用法及代码示例
- C++ ios dec用法及代码示例
- C++ ios manipulators internal()用法及代码示例
- C++ ios hex用法及代码示例
- C++ ios manipulators fixed()用法及代码示例
- C++ ios manipulators oct()用法及代码示例
- C++ ios operator()用法及代码示例
- C++ ios manipulators showbase()用法及代码示例
注:本文由纯净天空筛选整理自 C++ ios Library - Function Internal。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。