Ruby on Rails 小数列
如果您将 ActiveRecord 列类型指定为十进制,Rails 会将该数据库值作为 ruby BigDecimal 对象返回。
我的问题是,在处理这些字段并对它们执行额外的数学运算时,我应该在计算中始终使用 BigDecimal 值还是可以使用浮点值。我不知道在同一计算中混合 BigDecimal 值和浮点值是否是一个好习惯。
混合示例:BigDecimal.new('12.43') / 4.2
相同类型示例:BigDecimal.new('12.43') / BigDecimal.new('4.2')
我问的原因是因为我有点不敢使用浮点数因为我需要小数精度。使用浮点数 0.1 + 0.7 不会等于 0.8。
If you specify your ActiveRecord column type to be decimal, Rails will return that database value as a ruby BigDecimal object.
My question is, when working with these fields and performing additional math on them, should I always use BigDecimal values in my calculations or are floating point values ok to use. I didn't know if it is a good practice to be mixing BigDecimal values and Floating Point values in the same calculations.
Mixed Example: BigDecimal.new('12.43') / 4.2
Same type Example: BigDecimal.new('12.43') / BigDecimal.new('4.2')
The reason I ask is because I'm a little gun shy of using floats because I need decimal accuracy. 0.1 + 0.7 will not equal 0.8 using floats.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
既然你是
使用 BigDecimal。工作正常
Since you're
use BigDecimal. Works fine