FUNCTION BitRShift( Arg AS USUAL, Bits AS USUAL ) AS LONG
public static int BitRShift( __Usual Arg, __Usual Bits )
1x = 5 // 二进制0101 2y = 1 // 向右移动1位 3? BitRShift(x,y) // 返回2,二进制0010