Java 按特定步长舍入

发布于 2024-11-18 15:09:27 字数 427 浏览 2 评论 0原文

我们经常需要对数字进行四舍五入,例如最小货币粒度(例如 0.05)的金额。

我在Java中遇到了溢出问题,并且似乎已经解决了它...希望您检查一下它是否是正确的解决方案...这个论坛上也存在其他解决方案...

public static float round(float input, float step) {

float a = Math.round(input / step) * step;

//Can't return "a" directly because of overflow problem in some cases
int b = Math.round(a * 100);

return (float) (float)b / 100f; }

但这仅适用于小数点后两位放置步长(如 0.05),因为我在这里硬编码 100...

Frequently we need to round a number like an amount for minimum currency granularity like 0.05.

I faced an overflow problem in Java, and have seemingly solved it...would like you to review if it's a correct solution...there are other solutions present on this forum as well...

public static float round(float input, float step) {

float a = Math.round(input / step) * step;

//Can't return "a" directly because of overflow problem in some cases
int b = Math.round(a * 100);

return (float) (float)b / 100f; }

But this will only work for 2 decimal place step (like 0.05) as I am hard coding 100 here...

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

千紇 2024-11-25 15:09:27

这适用于任何步长:

public static float round(float input, float step) 
{
  return ((Math.round(input / step)) * step);
}

This will work for any step size:

public static float round(float input, float step) 
{
  return ((Math.round(input / step)) * step);
}
月朦胧 2024-11-25 15:09:27

如果您使用数百位小数,则 float 不是您需要的类型。我可以将您重定向到 BigDecimal

If you work with hundreds of decimals, float is not the type you need. May I redirect you to BigDecimal?

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文