命名空间
变体
操作

std::setbase

来自 cppreference.com
< cpp‎ | io‎ | manip
 
 
 
输入/输出操纵器
浮点格式化
整数格式化
布尔格式化
字段宽度和填充控制
其他格式化
空白处理
输出刷新
(C++20)  

状态标志操作
时间和货币 I/O
(C++11)
(C++11)
(C++11)
(C++11)
引号操纵器
(C++14)
 
定义在头文件 <iomanip>
/*unspecified*/ setbase( int base );

设置流的数字基数。在表达式 out << setbase(base)in >> setbase(base) 中使用时,会更改流的 basefield 标志 outin,具体取决于 base 的值

除了 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::ostreamstd::istream
可用于任何
字符流

[编辑] 参见

更改用于整数 I/O 的基数
(函数) [编辑]
控制是否使用前缀来指示数字基数
(函数) [编辑]