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

右移valueshiftAmount的结果。

注解

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

适用于