gpt4 book ai didi

c++ - 可测试的无效浮点值。 (浮点 NULL)

转载 作者:太空狗 更新时间:2023-10-29 23:30:10 30 4
gpt4 key购买 nike

我希望能够做到以下几点:

float func()
{
if( error ) return InvalidFloatingPointValue;
else return 0.0f;
}

// somewhere else
float a = func();
if( a == InvalidFloatingPointValue )
DoSomething();

我有什么理由不应该这样做吗?是否有交叉编译器、跨平台(Windows、Linux、Android)的值(value)可以用于快速安全地进行此类测试?

最佳答案

您可以返回 NaN。这依赖于在某些时候要检查的返回值或在其他表达式中使用返回值的结果,因此应该记录在案。

#include <limits> // std::numeric_linits

float func()
{
return error ? std::numeric_limits<float>::quiet_NaN() : 0.0f;
}

有了 C++11 的支持,您可以使用 std::isnan 检查返回值是否为 NaN。但是您不应该比较 NaN 是否相等:它们的比较总是产生 false。好处是如果 a 是 NaN,则 a != atrue

#include <cmath> // std::isnan, requires C++11

float a = func();
if(std::isnan(a)) DoSomething();

关于c++ - 可测试的无效浮点值。 (浮点 NULL),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29194335/

30 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com