首頁 > Java > java教程 > 主體

如何在 Java 中將浮點數格式化為 N 位元小數?

Susan Sarandon
發布: 2024-11-01 13:38:02
原創
568 人瀏覽過

How to Format a Float to N Decimal Places in Java?

使用字串格式將浮點數格式化為n 位小數

要將浮點數格式化為指定的小數位數,請考慮使用字串。 format() 方法而不是BigDecimal:

<code class="java">import java.lang.Math;

public static float Redondear(float pNumero, int pCantidadDecimales) {
    //Round the float value and convert it to a string with specified decimal places
    String roundedValue = String.format("%.2f", pNumero);
    
    //Parse the string back to a float to maintain float precision
    return Float.parseFloat(roundedValue);
}</code>
登入後複製

示例:

<code class="java">float originalValue = 625.3f;
int decimalPlaces = 2;

float roundedValue = Redondear(originalValue, decimalPlaces);
System.out.println("Rounded Value: " + roundedValue); // Output: 625.30</code>
登入後複製

文檔:

  • [String.format()](https://docs.oracle.com/javase/7/docs/api/java/lang/String.html#format(java.lang.String, java.lang.Object.. .))

以上是如何在 Java 中將浮點數格式化為 N 位元小數?的詳細內容。更多資訊請關注PHP中文網其他相關文章!

來源:php.cn
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
作者最新文章
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板
關於我們 免責聲明 Sitemap
PHP中文網:公益線上PHP培訓,幫助PHP學習者快速成長!