Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
所以我有一个浮点值,它增加了一些小数值。我需要一种快速简便的方法来确定何时越过整数边界 - 1.0、2.0、3.0 等。
我发誓几年前有一个漂亮的小宝石在做这个,但我一辈子都找不到它!
有人想到一个巧妙的方法吗?
像这样简单的事情怎么样
if ( floor(original) != floor(new_value) ) { ... }