MathF.Abs(Single) 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
返回单精度浮点数的绝对值。
public:
static float Abs(float x);
public static float Abs (float x);
static member Abs : single -> single
Public Shared Function Abs (x As Single) As Single
参数
- x
- Single
要获取其绝对值的数字。
返回
x
的绝对值
注解
Single 的绝对值是其数值而不带符号。 例如,1.2e-03 和 -1.2e03 的绝对值为 1.2e03。
如果 x
等于 NegativeInfinity 或 PositiveInfinity,则返回值为 PositiveInfinity。 如果 x
等于 NaN,则返回值 NaN。