C++ 参考手册
- C++11
- C++14
- C++17
- C++20
- C++ 编译器支持情况表
- 独立与宿主实现
- C++ 语言
- C++ 关键词
- 预处理器
- C++ 标准库头文件
- 具名要求
- 功能特性测试 (C++20)
- 工具库
- 类型支持(基本类型、RTTI、类型特性)
- 概念库 (C++20)
- 错误处理
- 动态内存管理
- 日期和时间工具
- 字符串库
- std::basic_string
- std::basic_string_view
- 空终止字节字符串
- std::isalnum
- std::isalpha
- std::islower
- std::isupper
- std::isdigit
- std::isxdigit
- std::isblank
- std::iscntrl
- std::isgraph
- std::isspace
- std::isprint
- std::ispunct
- std::tolower
- std::toupper
- std::atof
- std::atoi, std::atol, std::atoll
- std::strtol, std::strtoll
- std::strtoul, std::strtoull
- std::strtof, std::strtod, std::strtold
- std::strtoimax, std::strtoumax
- std::strcpy
- std::strncpy
- std::strcat
- std::strncat
- std::strxfrm
- std::strlen
- std::strcmp
- std::strncmp
- std::strcoll
- std::strchr
- std::strrchr
- std::strspn
- std::strcspn
- std::strpbrk
- std::strstr
- std::strtok
- std::memchr
- std::memcmp
- std::memset
- std::memcpy
- std::memmove
- std::strerror
- 空终止多字节字符串
- 空终止宽字符串
- std::char_traits
- 注释
- 容器库
- 迭代器库
- 范围库 (C++20)
- 算法库
- 数值库
- 输入/输出库
- 文件系统库
- 本地化库
- 正则表达式库
- 原子操作库
- 线程支持库
- 实验性 C++ 特性
- 有用的资源
- 索引
- std 符号索引
- 协程支持 (C++20)
- C++ 关键词
std::atoi, std::atol, std::atoll
定义于头文件 <cstdlib>
|
||
int atoi( const char *str ); |
||
long atol( const char *str ); |
||
long long atoll( const char *str ); |
(C++11 起) | |
转译 str
所指向的字节字符串中的整数值。
舍弃任何空白符,直至找到首个非空白符,然后接收尽可能多的字符以组成合法的整数表示,并转换之为整数值。合法的整数值含下列部分:
- (可选) 正或负号
- 数位
参数
str | - | 指向要转译的空终止字节字符串的指针 |
返回值
成功时为对应 str
内容的整数值。若转换出的值落在对应返回类型的范围外,则返回值未定义。若不能进行转换,则返回 0 。
示例
运行此代码
#include <iostream> #include <cstdlib> int main() { const char *str1 = "42"; const char *str2 = "3.14159"; const char *str3 = "31337 with words"; const char *str4 = "words and 2"; int num1 = std::atoi(str1); int num2 = std::atoi(str2); int num3 = std::atoi(str3); int num4 = std::atoi(str4); std::cout << "std::atoi(\"" << str1 << "\") is " << num1 << '\n'; std::cout << "std::atoi(\"" << str2 << "\") is " << num2 << '\n'; std::cout << "std::atoi(\"" << str3 << "\") is " << num3 << '\n'; std::cout << "std::atoi(\"" << str4 << "\") is " << num4 << '\n'; }
输出:
std::atoi("42") is 42 std::atoi("3.14159") is 3 std::atoi("31337 with words") is 31337 std::atoi("words and 2") is 0
参阅
(C++11)(C++11)(C++11) |
转换字符串为有符号整数 (函数) |
转换字节字符串为整数值 (函数) | |
转换字节字符串为无符号整数值 (函数) |