Double 형식 연산 시의 정밀도 문제

3713 단어 자바
double 타 입 연산 시 계산 정밀도 가 높 지 않 아 0.99999999999999999999 가 자주 나타 나 므 로 BigDecimal 을 사용 해 야 합 니 다.   이것 은 자바 가 제공 하 는 높 은 정밀도 계산 도구 류 입 니 다.다음은 이러한 종류의 포장 입 니 다.사용 하기에 편리 합 니 다.
 
package cn.soft.util;


import java.io.Serializable;  
import java.math.BigDecimal;  
import org.springframework.stereotype.Component;  
/**
 *     : double      ,    0.0000000000000002   ,        BigDecimal      
                  ,  12.11+1.10  1211+110  ,   /100    
       BigDecimal  : 
 *@author:    
 *@date:   :2014-5-10   :  12:23:21
 *@version 1.0
 */
  
@Component  
public class DoubleUtil implements Serializable {  
    private static final long serialVersionUID = -3345205828566485102L;  
    //           
    private static final Integer DEF_DIV_SCALE = 2;  
  
    /** 
     *          。 
     * @param value1     
     * @param value2    
     * @return        
     */  
    public Double add(Number value1, Number value2) {  
        BigDecimal b1 = new BigDecimal(Double.toString(value1.doubleValue()));  
        BigDecimal b2 = new BigDecimal(Double.toString(value2.doubleValue()));  
        return b1.add(b2).doubleValue();  
    }  
  
    /** 
     *          。 
     *  
     * @param value1 
     *                
     * @param value2 
     *               
     * @return        
     */  
    public double sub(Number value1, Number value2) {  
        BigDecimal b1 = new BigDecimal(Double.toString(value1.doubleValue()));  
        BigDecimal b2 = new BigDecimal(Double.toString(value2.doubleValue()));  
        return b1.subtract(b2).doubleValue();  
    }  
  
    /** 
     *          。 
     *  
     * @param value1 
     *                
     * @param value2 
     *               
     * @return        
     */  
    public Double mul(Number value1, Number value2) {  
        BigDecimal b1 = new BigDecimal(Double.toString(value1.doubleValue()));  
        BigDecimal b2 = new BigDecimal(Double.toString(value2.doubleValue()));  
        return b1.multiply(b2).doubleValue();  
    }  
  
    /** 
     *   (  )       ,          ,         10 ,         。 
     *  
     * @param dividend 
     *                
     * @param divisor 
     *               
     * @return        
     */  
    public Double div(Double dividend, Double divisor) {  
        return div(dividend, divisor, DEF_DIV_SCALE);  
    }  
  
    /** 
     *   (  )       。           , scale      ,         。 
     *  
     * @param dividend 
     *                
     * @param divisor 
     *               
     * @param scale 
     *                            。 
     * @return        
     */  
    public Double div(Double dividend, Double divisor, Integer scale) {  
        if (scale < 0) {  
            throw new IllegalArgumentException(  
                    "The scale must be a positive integer or zero");  
        }  
        BigDecimal b1 = new BigDecimal(Double.toString(dividend));  
        BigDecimal b2 = new BigDecimal(Double.toString(divisor));  
        return b1.divide(b2, scale, BigDecimal.ROUND_HALF_UP).doubleValue();  
    }  
  
    /** 
     *               。 
     *  
     * @param value 
     *                      
     * @param scale 
     *                     
     * @return          
     */  
    public Double round(Double value, Integer scale) {  
        if (scale < 0) {  
            throw new IllegalArgumentException(  
                    "The scale must be a positive integer or zero");  
        }  
        BigDecimal b = new BigDecimal(Double.toString(value));  
        BigDecimal one = new BigDecimal("1");  
        return b.divide(one, scale, BigDecimal.ROUND_HALF_UP).doubleValue();  
    }  
}  

좋은 웹페이지 즐겨찾기