bit shift right. Shifts the bits right by n places. Truncates bits that get pushed off. x = 0000 0010 >> 1; x == 0000 0001 ...
確定! 回上一頁