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::towlower
- std::wctype
- std::iswctype
- std::iswcntrl
- std::iswprint
- std::iswspace
- std::iswblank
- std::iswgraph
- std::iswpunct
- std::iswalnum
- std::iswalpha
- std::iswupper
- std::iswlower
- std::iswdigit
- std::iswxdigit
- std::towupper
- std::wctrans
- std::towctrans
- std::wcstol, std::wcstoll
- std::wcstoul, std::wcstoull
- std::wcstof, std::wcstod, std::wcstold
- std::wcstoimax, std::wcstoumax
- std::wcslen
- std::wcscpy
- std::wcsncpy
- std::wcscat
- std::wcsncat
- std::wcscmp
- std::wcscoll
- std::wcsncmp
- std::wcsxfrm
- std::wcschr
- std::wcsrchr
- std::wcspbrk
- std::wcsspn
- std::wcscspn
- std::wcsstr
- std::wcstok
- std::wmemcpy
- std::wmemmove
- std::wmemcmp
- std::wmemchr
- std::wmemset
- std::char_traits
- 注释
- 容器库
- 迭代器库
- 范围库 (C++20)
- 算法库
- 数值库
- 输入/输出库
- 文件系统库
- 本地化库
- 正则表达式库
- 原子操作库
- 线程支持库
- 实验性 C++ 特性
- 有用的资源
- 索引
- std 符号索引
- 协程支持 (C++20)
- C++ 关键词
std::wcstoimax, std::wcstoumax
定义于头文件 <cinttypes>
|
||
std::intmax_t wcstoimax( const wchar_t* nptr, wchar_t** endptr, int base ); |
(C++11 起) | |
std::uintmax_t wcstoumax( const wchar_t* nptr, wchar_t** endptr, int base ); |
(C++11 起) | |
转译 nptr
所指向的宽字符串中的整数值。
舍弃所有空白符(以调用 isspace()
鉴别),直到找到首个非空白符,然后取尽可能多的字符组成底 n (其中 n=base )的无符号整数表示,并将它们转换成一个整数值。合法的无符号整数值由下列部分组成:
- (可选)正或负号
- (可选)指示八进制底的前缀(
0
)(仅当底为 8 或 0 时应用) - (可选)指示十六进制底的前缀(
0x
或0X
)(仅当底为 16 或 0 时应用) - 一个数字序列
底的合法集是 {0,2,3,...,36} 。合法数字集对于底 2 整数是 {0,1
},对于底3整数是 {0,1,2
} ,以此类推。对于大于 10
的底,合法数字包含字母字符,从对于底 11 整数的 Aa
到对于底36整数的 Zz
。忽略字符大小写。
当前安装的 C 本地环境可能接受另外的数字格式。
若 base 为 0 ,则自动检测数值进制:若前缀为 0
,则底为八进制,若前缀为 0x
或 0X
,则底为十六进制,否则底为十进制。
若符号是输入序列的一部分,则对从数字序列计算得来的数字值取反,如同用结果类型的一元减,它对无符号整数应用回卷规则。
函数设置 endptr
所指向的指针指向最后被转译宽字符的后一宽字符。若 endptr
为 NULL ,则忽略它。
参数
nptr | - | 指向要转译的空终止宽字符串的指针 |
endptr | - | 指向指向宽字符指针的指针。 |
base | - | 被转译整数值的底 |
返回值
成功时为对应 str
内容的整数值。若被转换值落在对应返回类型。若转换出的值落在对应返回类型范围外,则发生值域错误并返回 INTMAX_MAX 、 INTMAX_MIN 、 UINTMAX_MAX 或 0 中的接近者。若不能进行转换,则返回 0 。
示例
运行此代码
#include <iostream> #include <string> #include <cinttypes> int main() { std::wstring str = L"helloworld"; std::intmax_t val = std::wcstoimax(str.c_str(), nullptr, 36); std::wcout << str << " in base 36 is " << val << " in base 10\n"; wchar_t* nptr; val = std::wcstoimax(str.c_str(), &nptr, 30); if(nptr != &str[0] + str.size()) std::wcout << str << " in base 30 is invalid." << " The first invalid digit is " << *nptr << '\n'; }
输出:
helloworld in base 36 is 1767707668033969 in base 10 helloworld in base 30 is invalid. The first invalid digit is w
参阅
(C++11)(C++11) |
转换字节字符串为 std::intmax_t 或 std::uintmax_t (函数) |
转换宽字符串为整数值 (函数) | |
转换宽字符串为无符号整数值 (函数) |