Java DecimalFormat setNegativeSuffix()方法

Java DecimalFormat setNegativeSuffix()方法

Java中 DecimalFormat 类的 setNegativeSuffix() 方法用于为该DecimalFormat实例设置一个负后缀值。

语法:

public void setNegativeSuffix(String newValue)

参数 :该方法有一个单参数newValue,它是要设置为该DecimalFormat实例的负后缀的新值。

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

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

// Java program to illustrate the
// setNegativeSuffix() 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 suffix value
        deciFormat.setNegativeSuffix("negative");
  
        // Print a number with negative suffix
        System.out.println(deciFormat.format(-123.45));
    }
}

输出:

-123.45negative

参考资料 : https://docs.oracle.com/javase/7/docs/api/java/text/DecimalFormat.html#setNegativeSuffix(java.lang.String)

Python教程

Java教程

Web教程

数据库教程

图形图像教程

大数据教程

开发工具教程

计算机教程

Java DecimalFormat