CSTRING 转 INT
时间: 2023-09-08 13:12:11 浏览: 124
可以使用C++中的stoi函数将字符串转换为整数。例如:
```
#include <iostream>
#include <string>
int main() {
std::string str = "123";
int num = std::stoi(str);
std::cout << num << std::endl;
return 0;
}
```
输出结果为:
```
123
```
相关问题
cstring转int
可以使用 `std::stoi` 函数将 `cstring` 转换为 `int` 类型。
示例代码:
```cpp
#include <iostream>
#include <string>
int main() {
const char* str = "123";
int num = std::stoi(str);
std::cout << num << std::endl;
return 0;
}
```
输出结果:
```
123
```
CString 转 int
可以使用 `atoi` 或 `stoi` 函数将 `CString` 转换为整数。
使用 `atoi` 函数:
```c++
#include <cstdlib>
#include <cstring>
// CString 转 int
int CStringToInt(CString str)
{
return std::atoi(str.GetString());
}
```
使用 `stoi` 函数:
```c++
#include <string>
// CString 转 int
int CStringToInt(CString str)
{
std::string stdStr(str.GetString());
return std::stoi(stdStr);
}
```
需要注意的是,如果 `CString` 中包含非数字字符,那么这些非数字字符会被忽略。如果 `CString` 不能被转换为整数,那么 `atoi` 返回 0,`stoi` 抛出 `std::invalid_argument` 异常。
阅读全文