Skip to content

Instantly share code, notes, and snippets.

@thebigdatajedi
Created December 17, 2022 13:26
Show Gist options
  • Save thebigdatajedi/331f0218bdd061065c067a8768904bda to your computer and use it in GitHub Desktop.
Save thebigdatajedi/331f0218bdd061065c067a8768904bda to your computer and use it in GitHub Desktop.
Java, converting Int to BigDecimal because if you know, you know.
int intSample = 1;
BigDecimal.valueOf((double)intSample);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment