数字工具类

package com.zq.utils;

/**
*
* 数字工具类
*
* Created by MyEclipse. Author: ChenBin E-mail: chenbin_2008@126.com Date:
* 2016年12月16日 Time: 下午4:15:22
*/
public class NumberUtils {

/**
* Description : 多个小数相加接口
*
* @author : ChenBin
* @date : 2016年12月16日 下午4:17:04
*/
public static double plus(Double... nums) {
double sum = 0.0;
for (Double num : nums) {
if (num == null)
num = 0.0;
sum += num;
}
return sum;
}

/**
* Description : 多个整数相加
*
* @author : ChenBin
* @date : 2017年1月5日 下午2:25:25
*/
public static Integer plus(Integer... nums) {
int sum = 0;
for (Integer i : nums) {
if (null == i)
i = 0;
sum += i;
}
return sum;
}


/**
* Description : Double 转 double
* @author : wangzhiyuan
* @date : 2017-11-13
*/
public static double toDouble(Double d){
if(d == null){
return 0.00;
}else{
return d;
}
}


/**
* Description : 两Integer判断大小
* @author : wangzhiyuan
* @date : 2017-11-16
*/
public static Long judgeSize(Long n1,Long n2){
if(n1==null){
return n2;
}
if(n2 ==null){
return n1;
}
if(n1 >= n2){
return n1;
}else{
return n2;
}
}


}

转载于:https://www.cnblogs.com/rey888/p/8315941.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值