The java.math.BigDecimal.compareTo(BigDecimal bg) method checks for equality of this BigDecimal and BigDecimal object bg passed as parameter. The method considers two equal BigDecimal objects even if they are equal in value irrespective of the scale.
Syntax:
public int compareTo(BigDecimal bg)
Parameters:This function accepts only one BigDecimal object of BigDecimal type for comparison with this BigDecimal object.
Return Value:This method can return the following values :
- 0 : if value of this BigDecimal is equal to that of BigDecimal object passed as parameter.
- 1 : if value of this BigDecimal is greater than that of BigDecimal object passed as parameter.
- -1 : if value of this BigDecimal is less than that of BigDecimal object passed as parameter.
Note: The function returns true when it compares 124.0 and 124.0000, as it does not compare the scale of the two BigDecimal objects.
Examples:
Input : b1 = new BigDecimal("4743.0008"), b2 = new BigDecimal("4743.00001")
b1.compareTo(b2)
Output : 1
Input : b1 = new BigDecimal(4743), b2 = new BigDecimal("4743.00");
b1.compareTo(b2)
Output : 0
Below programs illustrate the working of compareTo() function of BigDecimal class:
Program 1: For greater than condition:
import java.io.*;
import java.math.*;
public class GFG {
public static void main(String[] args)
{
BigDecimal b1, b2;
b1 = new BigDecimal( 67891 );
b2 = new BigDecimal( 12346 );
if (b1.compareTo(b2) == 0 ) {
System.out.println(b1 + " and " + b2 + " are equal." );
}
else if (b1.compareTo(b2) == 1 ) {
System.out.println(b1 + " is greater than " + b2 + "." );
}
else {
System.out.println(b1 + " is lesser than " + b2 + "." );
}
}
}
|
Output:
67891 is greater than 12346.
Program 2: For equal condition:
import java.io.*;
import java.math.*;
public class GFG {
public static void main(String[] args)
{
BigDecimal b1, b2;
b1 = new BigDecimal( 67891 );
b2 = new BigDecimal( "67891.000" );
if (b1.compareTo(b2) == 0 ) {
System.out.println(b1 + " and " + b2 + " are equal." );
}
else if (b1.compareTo(b2) == 1 ) {
System.out.println(b1 + " is greater than " + b2 + "." );
}
else {
System.out.println(b1 + " is lesser than " + b2 + "." );
}
}
}
|
Output:
67891 and 67891.000 are equal.
Program 3: For less than condition:
import java.io.*;
import java.math.*;
public class GFG {
public static void main(String[] args)
{
BigDecimal b1, b2;
b1 = new BigDecimal( "4743.00001" );
b2 = new BigDecimal( "4743.0008" );
if (b1.compareTo(b2) == 0 ) {
System.out.println(b1 + " and " + b2 + " are equal." );
}
else if (b1.compareTo(b2) == 1 ) {
System.out.println(b1 + " is greater than " + b2 + "." );
}
else {
System.out.println(b1 + " is lesser than " + b2 + "." );
}
}
}
|
Output:
4743.00001 is lesser than 4743.0008.
Reference: https://docs.oracle.com/javase/7/docs/api/java/math/BigDecimal.html#compareTo(java.math.BigDecimal)
Whether you're preparing for your first job interview or aiming to upskill in this ever-evolving tech landscape,
GeeksforGeeks Courses are your key to success. We provide top-quality content at affordable prices, all geared towards accelerating your growth in a time-bound manner. Join the millions we've already empowered, and we're here to do the same for you. Don't miss out -
check it out now!