⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 bigdecimalmath.java

📁 大名鼎鼎的java动态脚本语言。已经通过了sun的认证
💻 JAVA
字号:
package org.codehaus.groovy.runtime;import java.math.BigDecimal;/** * BigDecimal NumberMath operations *  * @author Steve Goetze */public class BigDecimalMath extends NumberMath {	//This is an arbitrary value, picked as a reasonable choice for a rounding point	//for typical user math.	public static final int MAX_DIVISION_SCALE = 10;		protected static BigDecimalMath instance = new BigDecimalMath();		private BigDecimalMath() {}	protected Number absImpl(Number number) {		return toBigDecimal(number).abs();	}		protected Number addImpl(Number left, Number right) {		return toBigDecimal(left).add(toBigDecimal(right));	}	protected Number subtractImpl(Number left, Number right) {		return toBigDecimal(left).subtract(toBigDecimal(right));	}	protected Number multiplyImpl(Number left, Number right) {		return toBigDecimal(left).multiply(toBigDecimal(right));	}	protected Number divideImpl(Number left, Number right) {		//Hack until Java 1.5 BigDecimal is available.  For now, pick		//a result scale which is the maximum of the scale of the		//two operands and an arbitrary maximum (similar to what a		//handheld calculator would do).  Then, normalize the result		//by removing any trailing zeros.		BigDecimal bigLeft = toBigDecimal(left);		BigDecimal bigRight = toBigDecimal(right);		int scale = Math.max(bigLeft.scale(), bigRight.scale());		return normalize(bigLeft.divide(bigRight, Math.max(scale, MAX_DIVISION_SCALE), BigDecimal.ROUND_HALF_UP));	}		protected int compareToImpl(Number left, Number right) {		return toBigDecimal(left).compareTo(toBigDecimal(right));	}		private BigDecimal normalize(BigDecimal number) {        // we have to take care of the case number==0, because 0 can have every        // scale and the test in the while loop would never end        if (number.signum()==0) {            // the smallest scale for 0 is 0            return number.setScale(0);        }        // rescale until we found the smallest possible scale		try {			while (true) {				number = number.setScale(number.scale()-1);			} 		} catch (ArithmeticException e) {			return number;		}	}    protected Number negateImpl(Number left) {        return toBigDecimal(left).negate();    }}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -