You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
整型(Integers) 说明中第三条: 移位运算的结果的正负取决于操作符左边的数。x << y 和 x 2**y 是相等, x >> y 和 x / 2**y 是相等的。
应该改为: 移位运算的结果的正负取决于操作符左边的数。x << y 和 x * 2**y 是相等, x >> y 和 x / 2**y 是相等的。
为了阅读方便也可以加上括号: 移位运算的结果的正负取决于操作符左边的数。x << y 和 x * (2**y) 是相等, x >> y 和 x / (2**y) 是相等的。
最后,夸一夸博主,文章写的很不错,文可达意,武可复现。
The text was updated successfully, but these errors were encountered:
整型(Integers) 说明中第三条:
移位运算的结果的正负取决于操作符左边的数。x << y 和 x 2**y 是相等, x >> y 和 x / 2**y 是相等的。
应该改为:
移位运算的结果的正负取决于操作符左边的数。x << y 和 x * 2**y 是相等, x >> y 和 x / 2**y 是相等的。
为了阅读方便也可以加上括号:
移位运算的结果的正负取决于操作符左边的数。x << y 和 x * (2**y) 是相等, x >> y 和 x / (2**y) 是相等的。
最后,夸一夸博主,文章写的很不错,文可达意,武可复现。
The text was updated successfully, but these errors were encountered: