c++中的std_c++ stoi

c++中的std_c++ stoi版权声明:本文系原创,转载请声明出处。 1. 函数原型 2. 参数说明 str idx base 3. 返回值 如果解析成功,返回转换后的整数。 On success, the function returns the converted integral number as an int

c++中的std_c++

版权声明:本文系原创,转载请声明出处。

 

1. 函数原型

int stoi (const string&  str, size_t* idx = 0, int base = 10);
int stoi (const wstring& str, size_t* idx = 0, int base = 10);

 

2. 参数说明

  • str
String object with the representation of an integral number.
  • idx
Pointer to an object of type size_t, whose value is set by the function to position of the next character in 
str after the numerical value.

This parameter can also be a null pointer, in which case it is not used.
  • base
Numerical base (radix) that determines the valid characters and their interpretation.

If this is 
0, the base used is determined by the format in the sequence (see strtol for details). Notice that by default this argument is 
10, not 
0.

 

3. 返回值

如果解析成功,返回转换后的整数。

On success, the function returns the converted integral number as an int value.

 

4. 异常处理

stoi当字符串不符合规范时,会抛出异常,所以在使用stoi时应该有必要的异常处理:

#include <stdexcept>
#include <iostream>
#include <string>
using namespace std;
 
int main()
{
    std::string y = "253647586946334221002101219955219971002";
    int x;
 
    try {
        x = stoi(y);
    }
    catch (std::invalid_argument&){
        // If no conversion could be performed, an invalid_argument exception is thrown.
        cout << "Invalid_argument" << endl;
    }
    catch (std::out_of_range&){
        // If the value read is out of the range of representable values by an int, an out_of_range exception is thrown.
        cout << "Out of range" << endl;
    }
    catch (...) {
        // everything else
        cout << "Something else" << endl;
    }
    return 0;
}

 

参考资料:

  • https://blog.csdn.net/u014694994/article/details/79074566
  • http://www.cplusplus.com/reference/string/stoi/?kw=stoi

 

今天的文章c++中的std_c++ stoi分享到此就结束了,感谢您的阅读,如果确实帮到您,您可以动动手指转发给其他人。

版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 举报,一经查实,本站将立刻删除。
如需转载请保留出处:https://bianchenghao.cn/47968.html

(0)
编程小号编程小号
上一篇 2023-09-04 13:06
下一篇 2023-09-04 13:17

相关推荐

发表回复

您的电子邮箱地址不会被公开。 必填项已用*标注