Skip to content

Instantly share code, notes, and snippets.

@hillmanli-seekers
hillmanli-seekers / TestDouble.java
Last active July 12, 2022 18:14
BigDecimal vs double: illustration of accuracy and performance impact
import java.math.BigDecimal;
import java.util.function.Consumer;
import java.util.function.DoubleSupplier;
import java.util.stream.DoubleStream;
public class TestDouble {
private static double doubleTotal = 0;
private static double kahanDoubleTotal = 0;