我需要检查一些 *** 作结果是否有效,并删除那些无效像x / 0
谢谢 它在 FloatingPointNumber协议中定义, Float和 Double类型都符合。用法如下:
let d = 3.0let isNan = d.isNaN // Falselet d = Double.NaNlet 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枚举中声明。
总结以上是内存溢出为你收集整理的可可 – 这是Swift等价的isnan()?全部内容,希望文章能够帮你解决可可 – 这是Swift等价的isnan()?所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)