Here you can find the source of subtract(BigDecimal bigDecimal, BigDecimal bigDecimal2)
public static BigDecimal subtract(BigDecimal bigDecimal, BigDecimal bigDecimal2)
//package com.java2s; //License from project: Apache License import java.math.BigDecimal; public class Main { public static BigDecimal subtract(BigDecimal bigDecimal, BigDecimal bigDecimal2) { if (bigDecimal == null && bigDecimal2 == null) { return zeroBigDecimal(); }//from w w w .j a v a2s . c om if (bigDecimal == null) { return bigDecimal2; } if (bigDecimal2 == null) { return bigDecimal; } return bigDecimal.subtract(bigDecimal2); } public static BigDecimal zeroBigDecimal() { return new BigDecimal("0.00"); } }