Skip to content

Latest commit

 

History

History
11 lines (9 loc) · 227 Bytes

File metadata and controls

11 lines (9 loc) · 227 Bytes

Overview

  1. Java Idioms for rounding doubles

Idiom

final double unrounded = ... ;
final double rounded = BigDecimal.valueOf(unrounded)
    .setScale(numDecimalPlaces, RoundingMode.HALF_UP)
    .doubleValue();