std::setbase
来自 cppreference.com
定义在头文件 <iomanip> 中 |
||
/*unspecified*/ setbase( int base ); |
||
设置流的数字基数。在表达式 out << setbase(base) 或 in >> setbase(base) 中使用时,会更改流的 basefield
标志 out 或 in,具体取决于 base 的值
- 值 16 将
basefield
设置为 std::ios_base::hex. - 值 8 设置 std::ios_base::oct.
- 值 10 设置 std::ios_base::dec.
除了 8、10 或 16 之外的 base 值会将 basefield
重置为零,这对应于十进制输出和前缀相关的输入。
内容 |
[编辑] 参数
base | - | basefield 的新值 |
[编辑] 返回值
一个未指定类型的对象,使得
- 如果 out 是类型 std::basic_ostream<CharT, Traits> 的对象,则表达式 out << setbase(base)
- 具有类型 std::basic_ostream<CharT, Traits>&
- 具有值 out
- 表现得好像它调用了 f(out, base)
- 如果 in 是类型 std::basic_istream<CharT, Traits> 的对象,则表达式 in >> setbase(base)
- 具有类型 std::basic_istream<CharT, Traits>&
- 具有值 in
- 表现得好像它调用了 f(in, base)
其中函数 f 定义为
void f(std::ios_base& str, int base) { // set basefield str.setf(base == 8 ? std::ios_base::oct : base == 10 ? std::ios_base::dec : base == 16 ? std::ios_base::hex : std::ios_base::fmtflags(0), std::ios_base::basefield); }
[编辑] 示例
运行此代码
#include <iomanip> #include <iostream> #include <sstream> int main() { std::cout << "Parsing string \"10 0x10 010\"\n"; int n1, n2, n3; std::istringstream s("10 0x10 010"); s >> std::setbase(16) >> n1 >> n2 >> n3; std::cout << "hexadecimal parse: " << n1 << ' ' << n2 << ' ' << n3 << '\n'; s.clear(); s.seekg(0); s >> std::setbase(0) >> n1 >> n2 >> n3; std::cout << "prefix-dependent parse: " << n1 << ' ' << n2 << ' ' << n3 << '\n'; std::cout << "hex output: " << std::setbase(16) << std::showbase << n1 << ' ' << n2 << ' ' << n3 << '\n'; }
输出
Parsing string "10 0x10 010" hexadecimal parse: 16 16 16 prefix-dependent parse: 10 16 8 hex output: 0xa 0x10 0x8
[编辑] 缺陷报告
以下行为更改的缺陷报告已追溯应用于先前发布的 C++ 标准。
DR | 应用于 | 已发布的行为 | 正确行为 |
---|---|---|---|
LWG 183 | C++98 | setbase 只能与流一起使用类型为 std::ostream 或 std::istream |
可用于任何 字符流 |
[编辑] 参见
更改用于整数 I/O 的基数 (函数) | |
控制是否使用前缀来指示数字基数 (函数) |