可可 – 这是Swift等价的isnan()?

前端之家收集整理的这篇文章主要介绍了可可 – 这是Swift等价的isnan()?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
这是相当于isnan()在Swift?
我需要检查一些操作结果是否有效,并删除那些无效像x / 0
谢谢
它在 FloatingPointNumber协议中定义, FloatDouble类型都符合。用法如下:
let d = 3.0
let isNan = d.isNaN // False

let d = Double.NaN
let isNan = d.isNaN // True

如果你正在寻找一种方法来自己做这个检查,你可以。 IEEE定义NaN!= NaN,意味着你不能直接比较NaN和一个数字来确定它的数字。但是,你可以检查maybeNaN!= maybeNaN。如果这个条件的计算结果为真,那么你正在处理NaN。

虽然您应该优先使用aVariable.isNaN来确定值是否为NaN。

作为一个旁注,如果你不太确定你正在使用的值的分类,你可以切换FloatingPointNumber符合类型的floatingPointClass属性的值。

let noClueWhatThisIs: Double = // ...

switch noClueWhatThisIs.floatingPointClass {
case .SignalingNaN:
    print(FloatingPointClassification.SignalingNaN)
case .QuietNaN:
    print(FloatingPointClassification.QuietNaN)
case .NegativeInfinity:
    print(FloatingPointClassification.NegativeInfinity)
case .NegativeNormal:
    print(FloatingPointClassification.NegativeNormal)
case .NegativeSubnormal:
    print(FloatingPointClassification.NegativeSubnormal)
case .NegativeZero:
    print(FloatingPointClassification.NegativeZero)
case .PositiveZero:
    print(FloatingPointClassification.PositiveZero)
case .PositiveSubnormal:
    print(FloatingPointClassification.PositiveSubnormal)
case .PositiveNormal:
    print(FloatingPointClassification.PositiveNormal)
case .PositiveInfinity:
    print(FloatingPointClassification.PositiveInfinity)
}

它的值在FloatingPointClassification枚举中声明。

原文链接:https://www.f2er.com/swift/321016.html

猜你在找的Swift相关文章