命名空间
变体
操作

std::nan,std::nanf,std::nanl

来自 cppreference.com
< cpp‎ | numeric‎ | math
 
 
 
常见的数学函数
函数
基本操作
(C++11)  
(C++11)
(C++11)
(C++11)
(C++11)
(C++11)
nannanfnanl
(C++11)(C++11)(C++11)
指数函数
(C++11)
(C++11)

(C++11)
(C++11)
幂函数
(C++11)
(C++11)
三角函数
双曲函数
(C++11)
(C++11)
(C++11)

误差和伽马函数
(C++11)
(C++11)
(C++11)
(C++11)
最接近的整数浮点运算
(C++11)(C++11)(C++11)
(C++11)
(C++11)
(C++11)(C++11)(C++11)
浮点操作函数
(C++11)(C++11)
(C++11)
(C++11)
(C++11)(C++11)
(C++11)
分类和比较
(C++11)
(C++11)
(C++11)
(C++11)
(C++11)
(C++11)
(C++11)
(C++11)
类型
(C++11)
(C++11)
(C++11)
宏常量
分类
(C++11)(C++11)(C++11)(C++11)(C++11)


 
定义在头文件中 <cmath>
float       nanf( const char* arg );
(1) (自 C++11)
double      nan ( const char* arg );
(2) (自 C++11)
long double nanl( const char* arg );
(3) (自 C++11)

将字符字符串 arg 转换为相应的静默 NaN 值,如同调用 std::strtofstd::strtodstd::strtold 一样。

1) 调用 std::nanf("n-char-sequence"),其中 n-char-sequence 是一个数字、ASCII 字母和下划线的序列,等效于调用 std::strtof("NAN(n-char-sequence)", (char**)nullptr);.
调用 std::nanf("") 等效于调用 std::strtof("NAN()", (char**)nullptr);.
调用 std::nanf("string"),其中 string 既不是 n-char-sequence 也不是空字符串,等效于调用 std::strtof("NAN", (char**)nullptr);.
2)(1) 相同,但调用 std::strtod 而不是 std::strtof
3)(1) 相同,但调用 std::strtold 而不是 std::strtof

内容

[编辑] 参数

arg - 标识 NaN 内容的窄字符字符串

[编辑] 返回值

对应于标识字符串 arg 的静默 NaN 值,如果实现不支持静默 NaN,则为零。

如果实现支持 IEEE 浮点运算 (IEC 60559),它也支持静默 NaN。

[编辑] 错误处理

此函数不受 math_errhandling 中指定的任何错误条件的影响。

[编辑] 示例

#include <cmath>
#include <cstdint>
#include <cstring>
#include <iostream>
 
int main()
{
    double f1 = std::nan("1");
    std::uint64_t f1n; std::memcpy(&f1n, &f1, sizeof f1);
    std::cout << "nan(\"1\") = " << f1 << " (" << std::hex << f1n << ")\n";
 
    double f2 = std::nan("2");
    std::uint64_t f2n; std::memcpy(&f2n, &f2, sizeof f2);
    std::cout << "nan(\"2\") = " << f2 << " (" << std::hex << f2n << ")\n";
}

可能的输出

nan("1") = nan (7ff0000000000001)
nan("2") = nan (7ff0000000000002)

[编辑] 另请参阅

(C++11)
检查给定数字是否为 NaN
(函数) [编辑]
(C++11)
计算结果为类型为 float 的静默 NaN
(宏常量) [编辑]
标识可以表示特殊值“静默非数字”(NaN)的浮点类型
(std::numeric_limits<T> 的公共静态成员常量) [编辑]
识别可以表示特殊值“信号非数字”(NaN)的浮点类型。
(std::numeric_limits<T> 的公共静态成员常量) [编辑]
[静态]
返回给定浮点类型的静默 NaN 值。
(std::numeric_limits<T> 的公共静态成员函数) [编辑]
返回给定浮点类型的信号 NaN 值。
(std::numeric_limits<T> 的公共静态成员函数) [编辑]
C 文档 for nanf, nan, nanl