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


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


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

用法

public String getPositivePrefix()

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


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

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

// Java program to illustrate the 
// getPositivePrefix() 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 prefix value 
        deciFormat.setPositivePrefix("positive"); 
  
        // Get the positive prefix value 
        String positivePrefix = deciFormat.getPositivePrefix(); 
  
        System.out.println(positivePrefix); 
    } 
}
输出:
positive

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



相关用法


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