C语言wchar头文件(wchar.h)中wcstoull函数的用法及代码示例。
用法:
unsigned long long int wcstoull (const wchar_t* str, wchar_t** endptr, int base);
将宽字符串转换为无符号长整型整数
这是宽字符等价于strtoull(<cstdlib>),翻译str以同样的方式。
参数
- str
- 以整数表示的C宽字符串。
- endptr
- 引用类型的对象wchar_t*,其值由函数设置为中的下一个字符str数值之后。
此参数也可以是空指针,在这种情况下不使用。
返回值
成功后,该函数将转换后的整数返回为unsigned long long int值。如果无法执行有效的转换,则返回零值(0ULL)。
如果读取的值超出可表示的值范围unsigned long long int,函数返回ULLONG_MAX(在<climits>), 和errno被设定为ERANGE。
示例
/* wcstoull example */
#include <wchar.h>
int main ()
{
wchar_t wsNumbers[] = L"250068492 7b06af00 1100011011110101010001100000 0x6fffff";
wchar_t * pEnd;
unsigned long long int ulli1, ulli2, ulli3, ulli4;
ulli1 = wcstoull (wsNumbers,&pEnd,10);
ulli2 = wcstoull (pEnd,&pEnd,16);
ulli3 = wcstoull (pEnd,&pEnd,2);
ulli4 = wcstoull (pEnd,NULL,0);
wprintf (L"The decimal equivalents are: %llu, %llu, %llu and %llu.\n", ulli1, ulli2, ulli3, ulli4);
return 0;
}
可能的输出:
The decimal equivalents are: 250068492, 2064035584, 208622688 and 7340031. |
相关用法
- C语言 fgetwc用法及代码示例
- C语言 fgetws用法及代码示例
- C语言 fputwc用法及代码示例
- C语言 fputws用法及代码示例
- C语言 fwide用法及代码示例
- C语言 fwprintf用法及代码示例
- C语言 fwscanf用法及代码示例
- C语言 getwc用法及代码示例
- C语言 getwchar用法及代码示例
- C语言 putwc用法及代码示例
- C语言 putwchar用法及代码示例
- C语言 swprintf用法及代码示例
- C语言 swscanf用法及代码示例
- C语言 ungetwc用法及代码示例
- C语言 vfwprintf用法及代码示例
- C语言 vfwscanf用法及代码示例
- C语言 vswprintf用法及代码示例
- C语言 vswscanf用法及代码示例
- C语言 vwprintf用法及代码示例
- C语言 vwscanf用法及代码示例
- C语言 wprintf用法及代码示例
- C语言 wscanf用法及代码示例
- C语言 wcstod用法及代码示例
- C语言 wcstof用法及代码示例
- C语言 wcstol用法及代码示例
- C语言 wcstold用法及代码示例
- C语言 wcstoll用法及代码示例
- C语言 wcstoul用法及代码示例
- C语言 btowc用法及代码示例
- C语言 mbrlen用法及代码示例
- C语言 mbrtowc用法及代码示例
- C语言 mbsinit用法及代码示例
- C语言 wcrtomb用法及代码示例
- C语言 wctob用法及代码示例
- C语言 wcsrtombs用法及代码示例
- C语言 wcscat用法及代码示例
- C语言 wcschr用法及代码示例
- C语言 wcscmp用法及代码示例
- C语言 wcscpy用法及代码示例
- C语言 wcscspn用法及代码示例
- C语言 wcslen用法及代码示例
- C语言 wcsncat用法及代码示例
- C语言 wcsncmp用法及代码示例
- C语言 wcsncpy用法及代码示例
- C语言 wcspbrk用法及代码示例
- C语言 wcsrchr用法及代码示例
- C语言 wcsspn用法及代码示例
- C语言 wcsstr用法及代码示例
- C语言 wcstok用法及代码示例
- C语言 wmemchr用法及代码示例
- C语言 wmemcmp用法及代码示例
- C语言 wmemcpy用法及代码示例
- C语言 wmemmove用法及代码示例
- C语言 wmemset用法及代码示例
- C语言 wcsftime用法及代码示例
注:本文由纯净天空筛选整理自C标准库大神的英文原创作品 C wcstoull function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。