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 位的結果。

實作

備註

這項作業的目的是要執行帶正負號的 (,也稱為算術) 帶正負號類型的右移位。

適用於