gpt4 book ai didi

c++ - operator>> 可以读取 int hex AND decimal 吗?

转载 作者:塔克拉玛干 更新时间:2023-11-02 23:52:25 28 4
gpt4 key购买 nike

我可以说服 C++ 中的 operator>> 读取 hex 值 AND 和 decimal 值吗?下面的程序演示了读取十六进制是如何出错的。我希望相同的 istringstream 能够读取 hexdecimal

#include <iostream>
#include <sstream>

int main(int argc, char** argv)
{
int result = 0;
// std::istringstream is("5"); // this works
std::istringstream is("0x5"); // this fails

while ( is.good() ) {
if ( is.peek() != EOF )
is >> result;
else
break;
}

if ( is.fail() )
std::cout << "failed to read string" << std::endl;
else
std::cout << "successfully read string" << std::endl;

std::cout << "result: " << result << std::endl;
}

最佳答案

使用std::setbase(0)启用依赖于前缀的解析。它将能够将 10(dec)解析为十进制的 10,将 0x10(hex)解析为十进制的 16,将 010(八进制)解析为十进制的 8 .

#include <iomanip>
is >> std::setbase(0) >> result;

关于c++ - operator>> 可以读取 int hex AND decimal 吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/77266/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com