std::setw

< cpp‎ | io‎ | manip
 
 
 
输入/输出操纵符
浮点格式化
整数格式化
布尔格式化
域宽与填充控制
setw
其他格式化
空白符处理
输出冲入
状态标志操纵
时间与金钱 I/O
(C++11)
(C++11)
(C++11)
(C++11)
带引号操纵符
(C++14)
 
定义于头文件 <iomanip>
/*unspecified*/ setw( int n );

用于表达式 out << setw(n)in >> setw(n) 时,设置流 outinwidth 参数准确为 n

参数

n - width 的新值

返回值

返回未指定类型对象,满足若 strstd::basic_ostream<CharT, Traits>std::basic_istream<CharT, Traits> 类型流的名称,则表达式 str << setw(n)str >> setw(n) 表现为如同执行下列代码:

str.width(n);

注意

若调用任何下列函数,则流的宽度属性将被设为零(表示“不指定”):

  • 输入
  • 输出

此修改器在输入与输出上的准确效果在单独的 I/O 函数间有别,单独地描述于每个 operator<<operator>> 重载的页面。

示例

#include <sstream>
#include <iostream>
#include <iomanip>
 
int main()
{
    std::cout << "no setw:" << 42 << '\n'
              << "setw(6):" << std::setw(6) << 42 << '\n'
              << "setw(6), several elements: " << 89 << std::setw(6) << 12 << 34 << '\n';
    std::istringstream is("hello, world");
    char arr[10];
    is >> std::setw(6) >> arr;
    std::cout << "Input from \"" << is.str() << "\" with setw(6) gave \""
              << arr << "\"\n";
}

输出:

no setw:42
setw(6):    42
setw(6), several elements: 89    1234
Input from "hello, world" with setw(6) gave "hello"

参阅

管理域的宽度
(std::ios_base 的公开成员函数)
更改填充字符
(函数模板)
设置填充字符的布置
(函数)