S********e 发帖数: 72 | 1 从来没见过,google,bing都没找到
usage:
e.g.
i=1;i>>>1 |
g*****g 发帖数: 34805 | 2 unsigned right shift
【在 S********e 的大作中提到】 : 从来没见过,google,bing都没找到 : usage: : e.g. : i=1;i>>>1
|
N**N 发帖数: 1713 | 3 The unsigned right shift operator ">>>" shifts a zero into the leftmost
position, while the leftmost position after ">>" depends on sign extension.
http://docs.oracle.com/javase/tutorial/java/nutsandbolts/op3.ht
【在 S********e 的大作中提到】 : 从来没见过,google,bing都没找到 : usage: : e.g. : i=1;i>>>1
|
S********e 发帖数: 72 | 4 Thanks!
【在 g*****g 的大作中提到】 : unsigned right shift
|
S********e 发帖数: 72 | 5 Thanks!
【在 N**N 的大作中提到】 : The unsigned right shift operator ">>>" shifts a zero into the leftmost : position, while the leftmost position after ">>" depends on sign extension. : http://docs.oracle.com/javase/tutorial/java/nutsandbolts/op3.ht
|
c********s 发帖数: 817 | |