Wednesday, July 3, 2024
HomeLanguagesJavaBigDecimal intValue() Method in Java

BigDecimal intValue() Method in Java

The java.math.BigDecimal.intValue() is an in-built function which converts this BigDecimal to an integer value. This function discards any fractional part of this BigDecimal. If the result of the conversion is too big to be represented as an integer value, the function returns only the lower-order 32 bits.

Syntax:

public int intValue()

Parameters: This function accepts no parameters.

Return Value: This function returns the integer value of this BigDecimal.

Examples:

Input : 19878124.176
Output : 19878124

Input : "721111"
Output : 721111

Below programs illustrate the java.math.BigDecimal.intValue() method:

Program 1:




// Java program to illustrate
// intValue() method
import java.math.*;
import java.io.*;
  
class GFG {
    public static void main(String[] args)
    {
        // Creating 2 BigDecimal Objects
        BigDecimal b1, b2;
        // Assigning values to b1, b2
        b1 = new BigDecimal("19878124.176");
        b2 = new BigDecimal("721111");
        // Displaying their respective Integer Values
        System.out.println("The Integer Value of " + b1 + " is " 
                                                + b1.intValue());
        System.out.println("The Integer Value of " + b2 + " is "
                                                + b2.intValue());
    }
}


Output:

The Integer Value of 19878124.176 is 19878124
The Integer Value of 721111 is 721111

Note: Information regarding the overall magnitude and precision of large this BigDecimal values might be lost during the course of conversion by this function. As a consequence, a result with the opposite sign might be returned.

Program 2: This program illustrates a scenario when the function returns a result with the opposite sign.




// Java program to illustrate
// intValue() method
import java.math.*;
import java.io.*;
  
class GFG {
    public static void main(String[] args)
    {
        // Creating 2 BigDecimal Objects
        BigDecimal b1, b2;
        // Assigning values to b1, b2
        b1 = new BigDecimal("1987812417600");
        b2 = new BigDecimal("3567128439701");
        // Displaying their respective Integer Values
        System.out.println("The Integer Value of " + b1 + " is " + b1.intValue());
        System.out.println("The Integer Value of " + b2 + " is " + b2.intValue());
    }
}


Output:

The Integer Value of 1987812417600 is -757440448
The Integer Value of 3567128439701 is -1989383275

Reference: https://docs.oracle.com/javase/7/docs/api/java/math/BigDecimal.html#intValue()

Nokonwaba Nkukhwana
Experience as a skilled Java developer and proven expertise in using tools and technical developments to drive improvements throughout a entire software development life cycle. I have extensive industry and full life cycle experience in a java based environment, along with exceptional analytical, design and problem solving capabilities combined with excellent communication skills and ability to work alongside teams to define and refine new functionality. Currently working in springboot projects(microservices). Considering the fact that change is good, I am always keen to new challenges and growth to sharpen my skills.
RELATED ARTICLES

LEAVE A REPLY

Please enter your comment!
Please enter your name here

Most Popular

Recent Comments