UInt32.Clamp(UInt32, UInt32, UInt32) 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
将值固定为非独占最小值和最大值。
public:
static System::UInt32 Clamp(System::UInt32 value, System::UInt32 min, System::UInt32 max) = System::Numerics::INumber<System::UInt32>::Clamp;
public static uint Clamp (uint value, uint min, uint max);
static member Clamp : uint32 * uint32 * uint32 -> uint32
Public Shared Function Clamp (value As UInteger, min As UInteger, max As UInteger) As UInteger
参数
- value
- UInt32
要固定的值。
- min
- UInt32
应固定到的 value
非独占最小值。
- max
- UInt32
应固定到的 value
非独占最大值。
返回
固定value
到 和 max
的min
非独占范围的结果。