当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Java DecimalFormat getPositiveSuffix()用法及代码示例


Java中DecimalFormat类的getPositiveSuffix()方法用于获取此DecimalFormat实例的正后缀值。

用法

public String getPositiveSuffix()

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


返回值:此方法返回此DecimalFormat实例的正后缀值。

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

// Java program to illustrate the 
// getPositiveSuffix() method 
  
import java.text.DecimalFormat; 
  
public class GFG { 
  
    public static void main(String[] args) 
    { 
  
        // Create a DecimalFormat instance 
        DecimalFormat deciFormat = new DecimalFormat(); 
  
        // Set a positive suffix value 
        deciFormat.setPositiveSuffix("positive"); 
  
        // Get the positive suffix value 
        String positiveSuffix = deciFormat.getPositiveSuffix(); 
  
        System.out.println(positiveSuffix); 
    } 
}
输出:
positive

参考: https://docs.oracle.com/javase/7/docs/api/java/text/DecimalFormat.html#getPositiveSuffix()



相关用法


注:本文由纯净天空筛选整理自gopaldave大神的英文原创作品 DecimalFormat getPositiveSuffix() method in Java。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。