We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Couldn't load subscription status. Retry
There was an error while loading. Please reload this page.
MBit
数字的二进制操作(例如 与,或,非 等操作)
按位“或”运算,a | b
按位“与”运算, a & b
按位“异或”运算, a ^ b
按位“非”运算, ~a
按位左移, a << bit
按位右移, a >> bit