BitOperations.LeadingZeroCount 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
多載
LeadingZeroCount(UInt32) |
計算不帶正負號 32 位元整數遮罩中前置字元為零的位元數。 |
LeadingZeroCount(UInt64) |
計算不帶正負號 64 位元整數遮罩中前置字元為零的位元數。 |
LeadingZeroCount(UIntPtr) |
計算遮罩中前置零位的數目。 類似於 x86 指令 LZCNT 的行為。 |
LeadingZeroCount(UInt32)
重要
此 API 不符合 CLS 規範。
計算不帶正負號 32 位元整數遮罩中前置字元為零的位元數。
public:
static int LeadingZeroCount(System::UInt32 value);
[System.CLSCompliant(false)]
public static int LeadingZeroCount (uint value);
[<System.CLSCompliant(false)>]
static member LeadingZeroCount : uint32 -> int
Public Shared Function LeadingZeroCount (value As UInteger) As Integer
參數
- value
- UInt32
遮罩。
傳回
遮罩中前置字元為零的位元數。
- 屬性
備註
這個方法的行為類似於 x86 指令 LZCNT。
適用於
LeadingZeroCount(UInt64)
重要
此 API 不符合 CLS 規範。
計算不帶正負號 64 位元整數遮罩中前置字元為零的位元數。
public:
static int LeadingZeroCount(System::UInt64 value);
[System.CLSCompliant(false)]
public static int LeadingZeroCount (ulong value);
[<System.CLSCompliant(false)>]
static member LeadingZeroCount : uint64 -> int
Public Shared Function LeadingZeroCount (value As ULong) As Integer
參數
- value
- UInt64
遮罩。
傳回
遮罩中前置字元為零的位元數。
- 屬性
備註
這個方法的行為類似於 x86 指令 LZCNT。
適用於
LeadingZeroCount(UIntPtr)
重要
此 API 不符合 CLS 規範。
計算遮罩中前置零位的數目。 類似於 x86 指令 LZCNT 的行為。
public:
static int LeadingZeroCount(UIntPtr value);
[System.CLSCompliant(false)]
public static int LeadingZeroCount (UIntPtr value);
[<System.CLSCompliant(false)>]
static member LeadingZeroCount : unativeint -> int
Public Shared Function LeadingZeroCount (value As UIntPtr) As Integer
參數
- value
-
UIntPtr
unativeint
數值。
傳回
遮罩中前置零位的計數。
- 屬性