ObjectType.ShiftRightObj(Object, Int32) 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
執行算術右移位 (>>) 運算。
此 API 支援此產品基礎結構,但無法直接用於程式碼之中。
public:
static System::Object ^ ShiftRightObj(System::Object ^ o1, int amount);
public static object ShiftRightObj (object? o1, int amount);
public static object ShiftRightObj (object o1, int amount);
static member ShiftRightObj : obj * int -> obj
Public Shared Function ShiftRightObj (o1 As Object, amount As Integer) As Object
參數
- o1
- Object
必要。 整數值運算式。 要移位的位元模式。 資料型別必須是整數類資料型別 (Integral Type) (SByte
、Byte
、Short
、UShort
、Integer
、UInteger
、Long
或 ULong
)。
- amount
- Int32
必要。 數值運算式。 位元模式移位的位元數。 資料型別必須是 Integer
或擴展至 Integer
。
傳回
整數值。 位元模式移位的結果。 資料型別與 o1
的型別相同。
備註
這個類別支援 Visual Basic 編譯程式,並不適合直接從您的程式代碼使用。