如何将字符串解析为 C++ 中的 int?


你可以使用 string 流来解析 C++ 中的 int 并将其解析为 int。你需要使用此方法进行一些错误检查。

示例

#include<iostream>
#include<sstream>
using namespace std;

int str_to_int(const string &str) {
   stringstream ss(str);
   int num;
   ss >> num;
   return num;
}

int main() {
   string s = "12345";
   int x = str_to_int(s);
   cout << x;
}

输出

这样将得到以下输出 −

12345

在新 C++11 中,有可实现上述操作的函数:stoi(string 转 int)、stol(string 转 long)、stoll(string 转 long long)、stoul(string 转 unsigned long)等。

示例

你可以按照如下方式使用这些函数 −

#include<iostream>
using namespace std;

int main() {
   string s = "12345";
   int x = stoi(s);
   cout << x;
}

输出

这样将得到以下输出 −

12345


更新于:2020 年 2 月 12 日

1K+ 浏览量

开启你的事业

完成课程认证

开始学习
广告