Is one BigDecimal not equals to another BigDecimal - Java java.math

Java examples for java.math:BigDecimal

Description

Is one BigDecimal not equals to another BigDecimal

Demo Code


//package com.java2s;
import java.math.BigDecimal;

public class Main {
    public static void main(String[] argv) throws Exception {
        BigDecimal d1 = new BigDecimal("1234");
        BigDecimal d2 = new BigDecimal("1234");
        System.out.println(ne(d1, d2));
    }/*w  w w . j  av  a  2 s . c  o  m*/

    public static boolean ne(BigDecimal d1, BigDecimal d2) {
        return d1.compareTo(d2) != 0;
    }
}

Related Tutorials