C++ ios 库 - 左函数


描述

它用于将 str 流的调整字段格式标志设置为左侧。当 adjustmentfield 设置为 left 时,通过在末尾插入填充字符(fill)来将输出填充到字段宽度(width),有效地将字段调整到左侧。

宣言

以下是 std::left 函数的声明。

ios_base& left (ios_base& str);

参数

str - 格式标志受影响的流对象。

返回值

它返回参数 str。

例外情况

基本保证- 如果抛出异常,str 处于有效状态。

数据竞赛

它修改 str。对同一流对象的并发访问可能会导致数据争用。

例子

在下面的示例中解释了 std::left 函数。

#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
ios.htm