Math.BitIncrement(Double) 方法
定义
返回大于 x 的下一个最大值。Returns the next largest value that compares greater than x.
public:
static double BitIncrement(double x);
public static double BitIncrement (double x);
static member BitIncrement : double -> double
Public Shared Function BitIncrement (x As Double) As Double
参数
- x
- Double
要递增的值。The value to increment.
返回
相对大于 x 的下一个最大值。The next largest value that compares greater than x.
- 或 --or-
如果 x 等于 PositiveInfinity,则为 PositiveInfinity。PositiveInfinity if x equals PositiveInfinity.
- 或 --or-
如果 x 等于 NaN,则为 NaN。NaN if x equals NaN.