UInt128.RightShift(UInt128, Int32) 运算符

定义

将值向右移动给定的量。

public:
 static UInt128 operator >>(UInt128 value, int shiftAmount) = System::Numerics::IShiftOperators<UInt128, int, UInt128>::op_RightShift;
public static UInt128 operator >> (UInt128 value, int shiftAmount);
static member ( >>> ) : UInt128 * int -> UInt128
Public Shared Operator >> (value As UInt128, shiftAmount As Integer) As UInt128

参数

value
UInt128

shiftAmount向右移动的值。

shiftAmount
Int32

向右移动的量 value

返回

shiftAmount右移动value的结果。

实现

注解

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

适用于