IShiftOperators<TSelf,TOther,TResult>.RightShift(TSelf, TOther) 运算符

定义

将值右移给定量。

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的结果。

注解

此操作旨在对有符号类型执行有符号 (也称为算术) 右移。

适用于