c++ string2 int
时间: 2023-12-07 19:37:13 浏览: 143
C++ string
以下是两种将字符串转换为整数的方法:
1. 使用stdlib库中的stoi()函数
```c++
#include <stdlib.h>
#include <string>
std::string a = "123";
int b = std::stoi(a);
```
2. 使用string库中的to_string()函数
```c++
#include <string>
int digit = 1;
std::string str = std::to_string(digit);
```
阅读全文