在实际应用中,std::stoll
函数可以用来将字符串转换为long long
类型的整数。例如:
#include <iostream>
#include <string>
int main() {
std::string str = "1234567890";
long long num = std::stoll(str);
std::cout << "The converted number is: " << num << std::endl;
return 0;
}
在这个例子中,我们将字符串"1234567890"转换为long long
类型的整数,然后输出到控制台。std::stoll
会自动处理异常情况,比如字符串无法转换为合法的long long
,或者超出了long long
的范围。