C++里atoi转换字符串的技巧

avatar
作者
猴君
阅读量:0

在C++中,可以使用std::stoi函数来将字符串转换为整数。std::stoi函数接受一个字符串作为参数,并返回相应的整数值。例如:

#include <iostream> #include <string>  int main() {     std::string str = "12345";     int num = std::stoi(str);          std::cout << "The integer value is: " << num << std::endl;          return 0; } 

另外,如果需要将字符串转换为浮点数,可以使用std::stof或std::stod函数,具体使用方法与std::stoi类似。

需要注意的是,如果字符串无法转换为相应的数值类型,这些函数将抛出std::invalid_argument异常。因此,在调用这些函数之前,最好使用try-catch块来捕获异常。

广告一刻

为您即时展示最新活动产品广告消息,让您随时掌握产品活动新动态!