Skip to content

Instantly share code, notes, and snippets.

@iamdejan
Created February 10, 2022 04:11
Show Gist options
  • Save iamdejan/d92bb4028c75d7556138acfcef6f77b9 to your computer and use it in GitHub Desktop.
Save iamdejan/d92bb4028c75d7556138acfcef6f77b9 to your computer and use it in GitHub Desktop.
Bit inversion in Java
int number = 7;
System.out.println((~number)); // will print -8
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment