getCurrencyInstance

 

Method getCurrencyInstance หากต้องการให้มีเครื่องหมาย $ ปรากฏหน้าตัวเลขโดยไม่ต้องพิมพ์เอง ให้ใช้ getCurrencyInstance แทนการใช้ getNumberInstance

ตัวอย่าง

 

::
NumberFormat formatter = NumberFormat.getCurrencyInstance();
System.out.println( formatter.format( tax )); // จะพิมพ์ผลลัพธ์เป็น "$1.23"

Forums: