“左移,右移”的版本间的差异

来自YFRobotwiki
跳转至: 导航搜索
(以“<font color="orange" size="+1">'''描述'''</font> From The Bitmath Tutorial in The Playground There are two bit shift operators in C++: the left shift operator <<...”为内容创建页面)
(没有差异)

2015年8月19日 (三) 17:41的版本

描述

From The Bitmath Tutorial in The Playground

There are two bit shift operators in C++: the left shift operator << and the right shift operator >>. These operators cause the bits in the left operand to be shifted left or right by the number of positions specified by the right operand.

More on bitwise math may be found here.

描述