Int128.RightShift(Int128, Int32) 操作员

定义

将值右移一个给定的量。

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

参数

value
Int128

shiftAmount向右移动的值。

shiftAmount
Int32

value 向右移动的量。

返回

shiftAmount右移 value 的结果。

实现

注解

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

适用于