C ++ std :: stoul不引发异常

时间:2018-10-01 03:05:30

标签: c++ string-conversion

我有一个函数来检查字符串是否为有效的unsigned int

unsigned long int getNum(std::string s, int base)
{
    unsigned int n;
    try
    {
        n = std::stoul(s, nullptr, base);
        std::cout << errno << '\n';
        if (errno != 0)
        {
            std::cout << "ERROR" << '\n';
        }
    }
    catch (std::exception & e)
    {
        throw std::invalid_argument("Value is too big");
    }
    return n;
}

但是,当我输入诸如0xfffffffff(9 f)的值时,errno仍为0(并且不会引发异常)。为什么会这样?

1 个答案:

答案 0 :(得分:3)

让我们看看在64位计算机上将0xfffffffff(9 f)分配给unsigned int时会发生什么。

#include <iostream>

int main(){

    unsigned int n = 0xfffffffff; //decimal value 68719476735
    std::cout << n << '\n';

}

隐式转换将导致编译器发出警告,但不会引起异常。

stoul的结果类型为unsigned long,在64位计算机上它的大小足以容纳0xfffffffff,因此不会有异常。