📌  相关文章
📜  Java中的 DecimalFormat getNegativePrefix() 方法

📅  最后修改于: 2022-05-13 01:55:30.362000             🧑  作者: Mango

Java中的 DecimalFormat getNegativePrefix() 方法

Java中DecimalFormat类的getNegativePrefix()方法用于获取这个DecimalFormat实例的负前缀值。

语法

public String getNegativePrefix()

参数:此方法不接受任何参数。

返回值:此方法返回此 DecimalFormat 实例的负前缀值。

下面的程序说明了上述方法:

// Java program to illustrate the
// getNegativePrefix() method
  
import java.text.DecimalFormat;
  
public class GFG {
  
    public static void main(String[] args)
    {
  
        // Create a DecimalFormat instance
        DecimalFormat deciFormat = new DecimalFormat();
  
        // Get the negative prefix value
        String negativePrefix = deciFormat.getNegativePrefix();
  
        System.out.println(negativePrefix);
    }
}
输出:
-

参考:https: Java/text/DecimalFormat.html#getNegativePrefix()