string转long long
时间: 2023-07-10 17:09:27 浏览: 214
可以使用 `stoll` 函数将 `std::string` 转换为 `long long` 类型。示例代码如下:
```c++
#include <iostream>
#include <string>
int main() {
std::string str = "1234567890123456789";
long long num = std::stoll(str);
std::cout << num << std::endl; // 输出 1234567890123456789
return 0;
}
```
需要注意的是,如果 `std::string` 中包含的数字超出了 `long long` 类型的范围,那么转换结果将是未定义的行为。因此,在转换之前需要确保字符串中的数字不会超出 `long long` 类型的范围。
相关问题
c++ string 转longlong
可以使用 `std::stoll` 函数将字符串转换为 `long long` 类型。示例代码如下:
```c++
#include <iostream>
#include <string>
int main() {
std::string str = "1234567890";
long long num = std::stoll(str);
std::cout << num << std::endl; // 输出 1234567890
return 0;
}
```
注意,如果字符串中包含非数字字符,或者超出了 `long long` 类型的范围,转换会抛出 `std::invalid_argument` 或 `std::out_of_range` 异常。因此,在使用 `std::stoll` 函数时应当做好异常处理。
C++string转long long代码
可以使用 `std::stoll` 函数将字符串转换为 `long long` 类型。以下是一个简单的示例代码:
```c++
#include <iostream>
#include <string>
int main() {
std::string str = "1234567890";
long long num = std::stoll(str);
std::cout << num << std::endl;
return 0;
}
```
输出为:
```
1234567890
```
阅读全文