IBitwiseOperators<TSelf,TOther,TResult> 介面
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
定義在兩個值上執行位運算的機制。
generic <typename TSelf, typename TOther, typename TResult>
where TSelf : IBitwiseOperators<TSelf, TOther, TResult>public interface class IBitwiseOperators
public interface IBitwiseOperators<TSelf,TOther,TResult> where TSelf : IBitwiseOperators<TSelf,TOther,TResult>
type IBitwiseOperators<'Self, 'Other, 'Result (requires 'Self :> IBitwiseOperators<'Self, 'Other, 'Result>)> = interface
Public Interface IBitwiseOperators(Of TSelf, TOther, TResult)
類型參數
- TSelf
實作這個介面的型別。
- TOther
與作業 TSelf
中使用的型別。
- TResult
包含 op 結果的 TSelf
型別 TOther
。
- 衍生
運算子
BitwiseAnd(TSelf, TOther) |
計算兩個值的位和 。 |
BitwiseOr(TSelf, TOther) |
計算兩個值的位或兩個值。 |
ExclusiveOr(TSelf, TOther) |
計算兩個值的獨佔或兩個值。 |
OnesComplement(TSelf) |
計算指定值的 ones-補碼表示法。 |