Skip to content

Instantly share code, notes, and snippets.

@mbchoa
Created March 11, 2015 15:12
Show Gist options
  • Save mbchoa/415f1c98c8dd3bd0dbee to your computer and use it in GitHub Desktop.
Save mbchoa/415f1c98c8dd3bd0dbee to your computer and use it in GitHub Desktop.
Determine integer absolute value using bitwise operations
public static int abs(int value){
int mask = value>>31;
return (value ^ mask) - mask;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment