Skip to content

Instantly share code, notes, and snippets.

@cmygit
Created December 27, 2018 05:35
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save cmygit/2441e2107af65adda638758b0dc119f5 to your computer and use it in GitHub Desktop.
Save cmygit/2441e2107af65adda638758b0dc119f5 to your computer and use it in GitHub Desktop.
double
// 保留小数点后2位
Double d = 1.23456;
BigDecimal b = new BigDecimal(d);
// BigDecimal.ROUND_HALF_EVEN 银行家舍入法
d = b.setScale(2, BigDecimal.ROUND_HALF_EVEN).doubleValue();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment