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.
是否有任何安全的方法可以将模函数应用于 Java 中 Number 类型的对象?
尝试采用“数字通用”方式在集合上应用过滤器。
唯一的通用方法将涉及仅使用抽象Number类中定义的方法,因此如果“安全”是指不丢失精度,那么不,因为Number警告中定义的所有方法都可能舍入或截断结果(除了floatValue()和doubleValue(),仅圆)。
Number
floatValue()
doubleValue()