C++ stoi()函数的用法

C++ stoi()函数的用法,第1张

C++ stoi()函数的用法 stoi()函数——将数字字符转化位int输出·

**使用之前要包含头文件#include< string >stoi()会对参数字符串进行范围判断,默认范围是在int的范围内[-2147483648, 2147483647]的,如果超出范围的话则会runtime error.

#include
#include
using namespace std;

int main()
{

    string str = "111111";
    int a = stoi(str);
    cout << a << endl;//输出111111
    return 0;
}

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/5714297.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-12-17
下一篇 2022-12-17

发表评论

登录后才能评论

评论列表(0条)

保存