【java】BigDecimal大于等于/小于等于/小于/大于/等于 比较器工具方法

2022/5/25 1:21:16

本文主要是介绍【java】BigDecimal大于等于/小于等于/小于/大于/等于 比较器工具方法,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

BigDecimal大于等于/小于等于/小于/大于/等于 比较器工具方法

 

public static void main(String[] args) {
        BigDecimal self = new BigDecimal("100");
        BigDecimal constant = new BigDecimal("99");

        System.out.println("大于等于结果:" + greater(self, constant, true));
        System.out.println("大于结果:" + greater(self, constant, false));
        System.out.println("小于等于结果:" + less(self, constant, true));
        System.out.println("小于结果:" + less(self, constant, false));
        System.out.println("等于结果:" + equals(self, constant));


    }

    public static Boolean less(BigDecimal self, BigDecimal constant, boolean needEqual) {
        if (needEqual) {
            return  self.compareTo(constant) < 1 ;
        }else {
            return self.compareTo(constant) == -1;
        }
    }

    public static Boolean greater(BigDecimal self, BigDecimal constant, boolean needEqual) {
        if (needEqual) {
            return  self.compareTo(constant) > -1 ;
        }else {
            return self.compareTo(constant) == 1;
        }
    }

    public static Boolean equals(BigDecimal self, BigDecimal constant) {
        return self.compareTo(constant) == 0;
    }
View Code

 



这篇关于【java】BigDecimal大于等于/小于等于/小于/大于/等于 比较器工具方法的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!


扫一扫关注最新编程教程