在C++中,atoll
函数用于将字符串转换为long long
类型的整数。其函数原型如下:
long long atoll(const char* str);
该函数接收一个以\0
结尾的字符串作为参数,并返回一个长整型的数值。如果字符串无法转换为长整型数值,则会返回0。
示例用法:
#include <iostream>
#include <cstdlib>
int main() {
const char* str = "1234567890";
long long num = atoll(str);
std::cout << num << std::endl;
return 0;
}
上述代码将字符串"1234567890"
转换为长整型数值,并输出结果1234567890
。