wcstof, wcstod, wcstold
来自cppreference.com
在标头 <wchar.h> 定义
|
||
float wcstof( const wchar_t * restrict str, wchar_t ** restrict str_end ); |
(C99 起) | |
double wcstod( const wchar_t * str, wchar_t ** str_end ); |
(C95 起) (C99 前) |
|
double wcstod( const wchar_t * restrict str, wchar_t ** restrict str_end ); |
(C99 起) | |
long double wcstold( const wchar_t * restrict str, wchar_t ** restrict str_end ); |
(C99 起) | |
转译 str 所指向的宽字符串中的浮点值。
函数会舍弃任何空白符(由 iswspace 确定),直至找到首个非空白符。然后它会取用尽可能多的字符,以构成合法的浮点数表示,并将它们转换成浮点值。合法的浮点值可以为下列之一:
- 十进制浮点数表达式。它由下列部分组成:
- (可选) 正或负号
- 非空的十进制数字序列,可选地包含一个小数点字符(由当前的 C 本地环境确定)(定义有效数字)
- (可选)
e
或E
,并跟随可选的正或负号,以及非空十进制数字序列(以 10 为底定义指数)
|
(C99 起) |
- 任何其他可由当前 C 本地环境接受的表达式
函数设置 str_end 所指向的指针为指向最后被转译宽字符的后一字符。若 str_end 为空指针,则忽略它。
参数
str | - | 指向要转译的空终止宽字符串的指针 |
str_end | - | 指向指向宽字符指针的指针。 |
返回值
成功时为对应 str 内容的浮点值。若转换得到的值落在对应返回类型的范围外,则发生值域错误并返回 HUGE_VAL、HUGE_VALF 或 HUGE_VALL。若不能进行转换,则返回 0。
示例
运行此代码
#include <errno.h> #include <stdio.h> #include <wchar.h> int main(void) { const wchar_t* p = L"111.11 -2.22 0X1.BC70A3D70A3D7P+6 1.18973e+4932zzz"; printf("解析 L\"%ls\":\n", p); wchar_t* end; for (double f = wcstod(p, &end); p != end; f = wcstod(p, &end)) { printf("'%.*ls' -> ", (int)(end-p), p); p = end; if (errno == ERANGE){ printf("值域错误,得到 "); errno = 0; } printf("%f\n", f); } }
输出:
解析 L"111.11 -2.22 0X1.BC70A3D70A3D7P+6 1.18973e+4932zzz": '111.11' -> 111.110000 ' -2.22' -> -2.220000 ' 0X1.BC70A3D70A3D7P+6' -> 111.110000 ' 1.18973e+4932' -> 值域错误,得到 inf
引用
- C23 标准(ISO/IEC 9899:2024):
- 7.29.4.1.1 The wcstod, wcstof, and wcstold functions (第 TBD 页)
- C17 标准(ISO/IEC 9899:2018):
- 7.29.4.1.1 The wcstod, wcstof, and wcstold functions (第 TBD 页)
- C11 标准(ISO/IEC 9899:2011):
- 7.29.4.1.1 The wcstod, wcstof, and wcstold functions (第 426-428 页)
- C99 标准(ISO/IEC 9899:1999):
- 7.24.4.1.1 The wcstod, wcstof, and wcstold functions (第 372-374 页)
参阅
(C99)(C99) |
将字节字符串转换成浮点值 (函数) |