Thursday, January 30, 2025
Google search engine
HomeLanguagesJavaDecimalFormat getPositivePrefix() method in Java

DecimalFormat getPositivePrefix() method in Java

The getPositivePrefix() method of the DecimalFormat class in Java is used to get the positive prefix value of this DecimalFormat instance.

Syntax:

public String getPositivePrefix()

Parameters: This method does not accepts any parameter.

Return Value: This method returns the positive prefix value of this DecimalFormat instance.

Below program illustrate the above method:




// 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);
    }
}


Output:

positive

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

Dominic Wardslaus
Dominic Wardslaushttp://wardslaus.com
infosec,malicious & dos attacks generator, boot rom exploit philanthropist , wild hacker , game developer,
RELATED ARTICLES

Most Popular

Recent Comments