C++
函数std::setw
的行为与在流上调用n
作为参数的成员宽度一样,它作为操纵器插入/提取(在输入流或输出流上插入/提取)。
它用于设置要在输出操作上使用的字段宽度。
声明
以下是 std::setw
函数的声明。
setw (int n);
参数
n
− 用作字段宽度的字符数。
返回值
它返回未指定(unspecified
),此函数应仅用作流操纵器。
示例
下面的例子说明了setw
函数的用法。
#include <iostream>
#include <iomanip>
int main () {
std::cout << std::setw(10);
std::cout << 77 << std::endl;
return 0;
}
编译和运行上面的程序,将产生以下结果 -
77