4. 位运算

4.1. &

操作符: &

返回值:Integer

说明:按位与,双目运算符。

4.2. <<

操作符: <<

返回值:Integer

说明:位左移,双目运算符。

4.3. >>

操作符: >>

返回值:Integer

说明:位右移,双目运算符。

4.4. |

操作符: |

返回值:Integer

说明:按位或,双目运算符。

4.5. ~

操作符: ~

返回值:Integer

说明:按位非,单目运算符。