std::atoi, std::atol, std::atoll
来自 cppreference.com
定义在头文件 <cstdlib> 中 |
||
int atoi( const char* str ); |
(1) | |
long atol( const char* str ); |
(2) | |
long long atoll( const char* str ); |
(3) | (自 C++11 起) |
解释由 str 指向的字节字符串中的整数值。隐含的基数始终为 10。
丢弃任何空白字符,直到找到第一个非空白字符,然后获取尽可能多的字符以形成有效的整数数字表示形式,并将它们转换为整数值。有效的整数值包含以下部分
- (可选) 正号或负号
- 数字
如果结果值无法表示,即转换后的值超出相应返回类型的范围,则行为未定义。
内容 |
[编辑] 参数
str | - | 指向要解释的以空字符结尾的字节字符串的指针 |
[编辑] 返回值
成功时,与 str 内容相对应的整数值。
如果无法执行转换,则返回 0。
[编辑] 可能的实现
template<typename T> T atoi_impl(const char* str) { while (std::isspace(static_cast<unsigned char>(*str))) ++str; bool negative = false; if (*str == '+') ++str; else if (*str == '-') { ++str; negative = true; } T result = 0; for (; std::isdigit(static_cast<unsigned char>(*str)); ++str) { int digit = *str - '0'; result *= 10; result -= digit; // calculate in negatives to support INT_MIN, LONG_MIN,.. } return negative ? result : -result; } int atoi(const char* str) { return atoi_impl<int>(str); } long atol(const char* str) { return atoi_impl<long>(str); } long long atoll(const char* str) { return atoi_impl<long long>(str); } |
实际的 C++ 库实现会回退到 atoi
、atoil
和 atoll
的 C 库实现,这些实现要么直接实现它们(如 MUSL libc 中),要么委托给 strtol/strtoll(如 GNU libc 中)。
[编辑] 示例
运行此代码
#include <cstdlib> #include <iostream> int main() { const auto data = { "42", "0x2A", // treated as "0" and junk "x2A", not as hexadecimal "3.14159", "31337 with words", "words and 2", "-012345", "10000000000" // note: out of int32_t range }; for (const char* s : data) { const int i{std::atoi(s)}; std::cout << "std::atoi('" << s << "') is " << i << '\n'; if (const long long ll{std::atoll(s)}; i != ll) std::cout << "std::atoll('" << s << "') is " << ll << '\n'; } }
可能的输出
std::atoi('42') is 42 std::atoi('0x2A') is 0 std::atoi('3.14159') is 3 std::atoi('31337 with words') is 31337 std::atoi('words and 2') is 0 std::atoi('-012345') is -12345 std::atoi('10000000000') is 1410065408 std::atoll('10000000000') is 10000000000
[编辑] 参见
(C++11)(C++11)(C++11) |
将字符串转换为带符号整数 (函数) |
(C++11)(C++11) |
将字符串转换为无符号整数 (函数) |
(C++11) |
将字节字符串转换为整数值 (函数) |
(C++11) |
将字节字符串转换为无符号整数值 (函数) |
(C++11)(C++11) |
将字节字符串转换为 std::intmax_t 或 std::uintmax_t (函数) |
(C++17) |
将字符序列转换为整数或浮点值 (函数) |
C 文档 针对 atoi, atol, atoll
|