| Return | Method | Summary |
|---|---|---|
| int | compareTo(BigDecimal val) | Compares this BigDecimal with the specified BigDecimal. |
| boolean | equals(Object x) | Compares this BigDecimal with the specified Object for equality. |
compareTo(BigDecimal val) returns:
| Return | Meaning |
|---|---|
| -1 | this BigDecimal is numerically less than val |
| 0 | this BigDecimal is numerically equal to val |
| 1 | this BigDecimal is numerically greater than val. |
import java.math.BigDecimal;
public class Main {
public static void main(String[] args) {
BigDecimal first = new BigDecimal(-1f);
BigDecimal second = new BigDecimal(10f);
System.out.println(first.compareTo(second));
}
}
The output:
-1
java2s.com | | Contact Us | Privacy Policy |
| Copyright 2009 - 12 Demo Source and Support. All rights reserved. |
| All other trademarks are property of their respective owners. |