作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
let value:Float = 5.678434let roundedValue = round(value * 100) / 100
roundedValue 浮点 5.6784339
如何获得 5.67 或 5.68?
最佳答案
extension Float {
func rounded(toPlaces places:Int) -> Float {
let divisor = pow(10.0, Float(places))
return (self * divisor).rounded() / divisor
}
}
let floatNumber:Float = 3.67565676
print(floatNumber.rounded(toPlaces: 2))
//prints 3.68
关于swift - 不适用于 swift 4 的 Float,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48003602/
我是一名优秀的程序员,十分优秀!