Skip to content

Instantly share code, notes, and snippets.

@simonliu009
Last active January 7, 2019 13:56
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 simonliu009/c6fb219dcf081117c6448bd483f753fc to your computer and use it in GitHub Desktop.
Save simonliu009/c6fb219dcf081117c6448bd483f753fc to your computer and use it in GitHub Desktop.
c: set bitx to 1 or 0 #c
//设置某位为1
number |= 1 << x; // 设置第x位为1
//清除某位
number &= ~(1 << x); // 置第x位为0
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment