IShiftOperators<TSelf,TOther,TResult>.RightShift(TSelf, TOther) 操作员
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
将值右移给定量。
public:
static TResult operator >>(TSelf value, TOther shiftAmount);
public static abstract TResult operator >> (TSelf value, TOther shiftAmount);
static member ( >>> ) : 'Self * 'Other -> 'Result
Public Shared Operator >> (value As TSelf, shiftAmount As TOther) As TResult
参数
- value
- TSelf
由 shiftAmount
向右移动的值。
- shiftAmount
- TOther
向右移动的 value
量。
返回
TResult
向shiftAmount
右移动value
的结果。
注解
此操作旨在对有符号类型执行有符号 (也称为算术) 右移。