當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Java DecimalFormat setNegativePrefix()用法及代碼示例


Java中DecimalFormat類的setNegativePrefix()方法用於設置此DecimalFormat實例的負值。

用法

public void setNegativePrefix(String newValue)

參數:此方法使用單個參數newValue,該參數是要為此DecimalFormat實例設置為負前綴的新值。


返回值:此方法不返回任何值。

以下示例程序旨在說明上述方法:

// Java program to illustrate the 
// setNegativePrefix() method 
  
import java.text.DecimalFormat; 
  
public class GFG { 
  
    public static void main(String[] args) 
    { 
  
        // Create a DecimalFormat instance 
        DecimalFormat deciFormat = new DecimalFormat(); 
  
        // Set a negative prefix value 
        deciFormat.setNegativePrefix("negative"); 
  
        // Print a number with negative prefix set 
        System.out.println(deciFormat.format(-123.45)); 
    } 
}
輸出:
negative123.45

參考: https://docs.oracle.com/javase/7/docs/api/java/text/DecimalFormat.html#setNegativePrefix(java.lang.String)



相關用法


注:本文由純淨天空篩選整理自gopaldave大神的英文原創作品 DecimalFormat setNegativePrefix() method in Java。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。