Go Programming Language 2

Go Programming Language 2

1、In Go, the sign of the remainder is always the same as the sign of the dividend, so -5%3 and -5%-3 are both -2. The behavior of / depends on whether its operands are integers, so 5.0/4.0 is 1.25, but 5/4 is 1 because integer

division truncates the result toward zero.

2、bitwise operator

  

  The &^ op erator is bit cle ar (AND NOT): in the expression z = x &^ y, each bit of z is 0 if the corresponding bit of y is 1; otherwise it equals the corresponding bit of x.

3、

4、

5、

6、

7、

8、

9、

10、

11、

12、

猜你喜欢

转载自www.cnblogs.com/tekkaman/p/11417855.html