它在
FloatingPointNumber协议中定义,
Float和
Double类型都符合。用法如下:
原文链接:https://www.f2er.com/swift/321016.htmllet 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枚举中声明。