BitOperations.RoundUpToPowerOf2 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
重载
RoundUpToPowerOf2(UInt32) |
将指定 UInt32 值向上舍入为 2 的幂。 |
RoundUpToPowerOf2(UInt64) |
将指定 UInt64 值向上舍入为 2 的幂。 |
RoundUpToPowerOf2(UIntPtr) |
将给定的整数值向上舍入为 2 的幂。 |
RoundUpToPowerOf2(UInt32)
- Source:
- BitOperations.cs
- Source:
- BitOperations.cs
- Source:
- BitOperations.cs
重要
此 API 不符合 CLS。
将指定 UInt32 值向上舍入为 2 的幂。
public:
static System::UInt32 RoundUpToPowerOf2(System::UInt32 value);
[System.CLSCompliant(false)]
public static uint RoundUpToPowerOf2 (uint value);
[<System.CLSCompliant(false)>]
static member RoundUpToPowerOf2 : uint32 -> uint32
Public Shared Function RoundUpToPowerOf2 (value As UInteger) As UInteger
参数
- value
- UInt32
要向上舍入为 2 的幂的值。
返回
大于或等于 value
的 2 的最小幂。
如果 value
为 0 或结果溢出,则返回 0。
- 属性
适用于
RoundUpToPowerOf2(UInt64)
- Source:
- BitOperations.cs
- Source:
- BitOperations.cs
- Source:
- BitOperations.cs
重要
此 API 不符合 CLS。
将指定 UInt64 值向上舍入为 2 的幂。
public:
static System::UInt64 RoundUpToPowerOf2(System::UInt64 value);
[System.CLSCompliant(false)]
public static ulong RoundUpToPowerOf2 (ulong value);
[<System.CLSCompliant(false)>]
static member RoundUpToPowerOf2 : uint64 -> uint64
Public Shared Function RoundUpToPowerOf2 (value As ULong) As ULong
参数
- value
- UInt64
要向上舍入为 2 的幂的值。
返回
大于或等于 value
的 2 的最小幂。
如果 value
为 0 或结果溢出,则返回 0。
- 属性
适用于
RoundUpToPowerOf2(UIntPtr)
- Source:
- BitOperations.cs
- Source:
- BitOperations.cs
- Source:
- BitOperations.cs
重要
此 API 不符合 CLS。
将给定的整数值向上舍入为 2 的幂。
public:
static UIntPtr RoundUpToPowerOf2(UIntPtr value);
[System.CLSCompliant(false)]
public static UIntPtr RoundUpToPowerOf2 (UIntPtr value);
[<System.CLSCompliant(false)>]
static member RoundUpToPowerOf2 : unativeint -> unativeint
Public Shared Function RoundUpToPowerOf2 (value As UIntPtr) As UIntPtr
参数
- value
-
UIntPtr
unativeint
值。
返回
UIntPtr
unativeint
大于或等于 value
的最小幂 2。
如果 value
为 0 或结果溢出,则返回 0。
- 属性