C++ stoll如何转换大数字符串

avatar
作者
筋斗云
阅读量:1

在C++中,可以使用std::stoll函数将大数字符串转换为长长整型(long long int)。示例如下:

#include <iostream> #include <string>  int main() {     std::string bigNumStr = "12345678901234567890";     long long int bigNum = std::stoll(bigNumStr);          std::cout << "The converted big number is: " << bigNum << std::endl;          return 0; } 

在上面的示例中,首先将大数字符串"12345678901234567890"赋值给bigNumStr变量,然后使用std::stoll函数将该字符串转换为长长整型,最后输出转换后的大数。

广告一刻

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