C++ 参考手册
- C++11
- C++14
- C++17
- C++20
- C++ 编译器支持情况表
- 独立与宿主实现
- C++ 语言
- C++ 关键词
- 预处理器
- C++ 标准库头文件
- 具名要求
- 功能特性测试 (C++20)
- 工具库
- 类型支持(基本类型、RTTI、类型特性)
- 概念库 (C++20)
- 错误处理
- 动态内存管理
- 日期和时间工具
- 字符串库
- 容器库
- 迭代器库
- 范围库 (C++20)
- 算法库
- 数值库
- 输入/输出库
- 输入/输出操纵符
- std::ios_base
- std::ios_base::failure
- std::ios_base::event_callback
- std::ios_base::seekdir
- std::ios_base::event
- std::ios_base::fmtflags
- std::ios_base::iostate
- std::ios_base::iword
- std::ios_base::pword
- std::ios_base::register_callback
- std::ios_base::sync_with_stdio
- std::ios_base::Init
- std::ios_base::openmode
- std::ios_base::precision
- std::ios_base::width
- std::ios_base::imbue
- std::ios_base::getloc
- std::ios_base::xalloc
- std::ios_base::ios_base
- std::ios_base::~ios_base
- std::ios_base::flags
- std::ios_base::setf
- std::ios_base::unsetf
- C 风格文件输入/输出
- std::basic_streambuf
- std::basic_filebuf
- std::basic_stringbuf
- std::strstreambuf
- std::basic_syncbuf
- std::basic_ios
- std::basic_istream
- std::basic_osyncstream
- std::basic_ostream
- std::basic_iostream
- std::basic_ifstream
- std::basic_ofstream
- std::basic_fstream
- std::basic_istringstream
- std::basic_ostringstream
- std::basic_stringstream
- std::istrstream
- std::ostrstream
- std::strstream
- std::streamoff
- std::streamsize
- std::fpos
- std::iostream_category
- std::io_errc
- std::cin, std::wcin
- std::cout, std::wcout
- std::cerr, std::wcerr
- std::clog, std::wclog
- 注释
- 文件系统库
- 本地化库
- 正则表达式库
- 原子操作库
- 线程支持库
- 实验性 C++ 特性
- 有用的资源
- 索引
- std 符号索引
- 协程支持 (C++20)
- C++ 关键词
位置:首页 > C++ 参考手册 >输入/输出库 >std::ios_base > std::ios_base::width
std::ios_base::width
streamsize width() const; |
(1) | |
streamsize width( streamsize new_width ); |
(2) | |
管理某些输出操作时生成的最小字符数,和某些输出操作时生成的最大字符数。
1) 返回当前域宽。
2) 设置域宽为给定值。返回先前的位宽。
参数
new_width | - | 设置的新域宽 |
返回值
调用函数前的域宽
注意
一些 I/O 函数在返回前调用 width(0) ,见 std::setw (这导致此域仅在下次 I/O 函数,而不再任何后继 I/O 时有效)。
此修改器在输入和输出上拥有的准确效果在单独的 I/O 函数之间有别,效果单独描述于每个 operator<<
和 operator>>
重载的页面。
示例
运行此代码
#include <array> #include <tuple> #include <ctime> #include <string> #include <iostream> #include <sstream> #include <iomanip> int main() { auto str_time = [](int year, int mon, int day) { constexpr std::array<const char*, 7> week_day{ { "Sunday", "Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday" } }; std::tm tm{}; tm.tm_year = year - 1900; tm.tm_mon = mon - 1; tm.tm_mday = day; day += mon < 3 ? year-- : year - 2; tm.tm_wday = (23 * mon / 9 + day + 4 + year / 4 - year / 100 + year / 400) % 7; std::ostringstream out; out << week_day[tm.tm_wday] << ", " << std::put_time(&tm, "%B %d, %Y"); return out.str(); }; constexpr int column_size = 4; using table_t = std::array<std::string, column_size>; table_t headers{ { "Name", "Birthdate", "Death date", "Language Created" } }; std::array<table_t, 5> data{ { { { "Dennis MacAlistair Ritchie", str_time(1941, 9, 9), str_time(2011, 10, 12), "C" } }, { { "Bjarne Stroustrup", str_time(1950, 12, 30), "", "C++" } }, { { "Anders Hejlsberg", str_time(1960, 12, 2), "", "C#" } }, { { "Guido van Rossum", str_time(1956, 1, 31), "", "Python" } }, { { "Brendan Eich", str_time(1961, 7, 4), "", "Javascript" } } } }; constexpr int name_wid = 30; constexpr int birth_wid = 30; constexpr int death_wid = 30; constexpr int lang_wid = 18; auto print_line = [](table_t const &tbl) { auto const &[Name, Birthdate, DeathDate, LanguageCreated] = tbl; std::cout.width(name_wid); std::cout << ("| " + Name) << '|'; std::cout.width(birth_wid); std::cout << (' ' + Birthdate) << '|'; std::cout.width(death_wid); std::cout << (' ' + DeathDate) << '|'; std::cout.width(lang_wid); std::cout << (' ' + LanguageCreated) << '|'; std::cout << '\n'; }; constexpr int total_wid = name_wid + birth_wid + death_wid + lang_wid + column_size; auto print_break = [] { std::cout.width(total_wid); std::cout.fill('-'); std::cout << '-' << std::endl; std::cout.fill(' '); }; std::cout.setf(std::ios::left, std::ios::adjustfield); print_break(); print_line(headers); print_break(); for (auto const &entry : data) print_line(entry); print_break(); }
输出:
---------------------------------------------------------------------------------------------------------------- | Name | Birthdate | Death date | Language Created | ---------------------------------------------------------------------------------------------------------------- | Dennis MacAlistair Ritchie | Tuesday, September 09, 1941 | Wednesday, October 12, 2011 | C | | Bjarne Stroustrup | Saturday, December 30, 1950 | | C++ | | Anders Hejlsberg | Friday, December 02, 1960 | | C# | | Guido van Rossum | Tuesday, January 31, 1956 | | Python | | Brendan Eich | Tuesday, July 04, 1961 | | Javascript | ----------------------------------------------------------------------------------------------------------------
参阅
管理浮点操作的精度 (公开成员函数) |