std::strtoimax
std::strtoimax,std::strtoumax
Defined in header | | |
---|---|---|
std::intmax_t strtoimax( const char* nptr, char** endptr, int base | | (since C++11) |
std::uintmax_t strtoumax( const char* nptr, char** endptr, int base | | (since C++11) |
指向的字节字符串中的整数值。nptr
...
丢弃通过调用所标识的任何空白字符%28isspace()
%29直到找到第一个非空白字符,然后尽可能多地接受字符以形成有效的字符。基-n
%28其中n=基%29整数表示并将它们转换为整数值。有效整数值由以下部分组成:
- %28可选%29加或减符号
- %2
8
可选%29前缀%28
0
%29表示八进制基%28
仅在基为8
或0
%29
- %28可选%29前缀%28
0x
或0X
%29表示十六进制基%28仅在基为16
或0
%29
- 数字序列
基的有效值集为{0,2,3,…,36}。基-2整数的有效数字集是{0,1
},对于基-3整数是{0,1,2
}等等。对于大于10
,有效数字包括字母字符,从Aa
对于基数-11整数,到Zz
基-36整数。字符的情况被忽略。
当前安装的C可以接受其他数字格式locale
...
如果基值为0
,则自动检测数字基:如果前缀为0
,则基为八进制,如果前缀为0x
或0X
,则基为十六进制,否则基为十进制。
如果减号是输入序列的一部分,则从数字序列中计算的数值将被否定,就像一元减去在结果类型中。
函数设置指向的指针。endptr
指向过去解释的最后一个字符的字符。如果endptr
是NULL
它被忽略了。
如果nptr
为空或没有预期的窗体,则不执行转换,如果enptr
不是NULL
%29nptr
指向的对象中存储。endptr
...
参数
nptr | - | pointer to the null-terminated byte string to be interpreted |
---|---|---|
endptr | - | pointer to a pointer to character. |
base | - | base of the interpreted integer value |
返回值
- 的内容对应的整数值。
str
会被归还。
- 如果转换后的值超出了相应的返回类型范围,则会发生范围错误%28设置。
errno
到ERANGE
29%和INTMAX_MAX
,,,INTMAX_MIN
,,,UINTMAX_MAX
或0
将酌情返回。
- 如果不能执行转换,
0
会被归还。
例
二次
#include <iostream>
#include <string>
#include <cinttypes>
int main()
{
std::string str = "helloworld";
std::intmax_t val = std::strtoimax(str.c_str(), nullptr, 36
std::cout << str << " in base 36 is " << val << " in base 10\n";
char* nptr;
val = std::strtoimax(str.c_str(), &nptr, 30
if(nptr != &str[0] + str.size())
std::cout << 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
二次
另见
wcstoimaxwcstoumax (C++11)(C++11) | converts a wide string to std::intmax_t or std::uintmax_t (function) |
---|---|
strtolstrtoll | converts a byte string to an integer value (function) |
strtoul strtoull | converts a byte string to an unsigned integer value (function) |
c strtoimax的文档,strtoumax
© cppreference.com
在CreativeCommonsAttribution下授权-ShareAlike未移植许可v3.0。