Single.Round 方法

定義

多載

Round(Single)

使用預設進位模式將值四捨五入為最接近的整數, (ToEven) 。

Round(Single, Int32)

使用預設進位模式將值四捨五入為指定的小數位數, () ToEven

Round(Single, MidpointRounding)

使用指定的進位模式,將值四捨五入為最接近的整數。

Round(Single, Int32, MidpointRounding)

使用預設進位模式將值四捨五入為指定的小數位數, () ToEven

Round(Single)

來源:
Single.cs
來源:
Single.cs
來源:
Single.cs

使用預設進位模式將值四捨五入為最接近的整數, (ToEven) 。

public:
 static float Round(float x) = System::Numerics::IFloatingPoint<float>::Round;
public static float Round (float x);
static member Round : single -> single
Public Shared Function Round (x As Single) As Single

參數

x
Single

要捨入的值。

傳回

使用預設進位模式四捨五入 x 至最接近整數的結果。

實作

適用於

Round(Single, Int32)

來源:
Single.cs
來源:
Single.cs
來源:
Single.cs

使用預設進位模式將值四捨五入為指定的小數位數, () ToEven

public:
 static float Round(float x, int digits) = System::Numerics::IFloatingPoint<float>::Round;
public static float Round (float x, int digits);
static member Round : single * int -> single
Public Shared Function Round (x As Single, digits As Integer) As Single

參數

x
Single

要捨入的值。

digits
Int32

應四捨五入的小數位數 x

傳回

使用預設舍入模式四捨五入 xdigits 小數位數的結果。

實作

適用於

Round(Single, MidpointRounding)

來源:
Single.cs
來源:
Single.cs
來源:
Single.cs

使用指定的進位模式,將值四捨五入為最接近的整數。

public:
 static float Round(float x, MidpointRounding mode) = System::Numerics::IFloatingPoint<float>::Round;
public static float Round (float x, MidpointRounding mode);
static member Round : single * MidpointRounding -> single
Public Shared Function Round (x As Single, mode As MidpointRounding) As Single

參數

x
Single

要捨入的值。

mode
MidpointRounding

應該四捨五入的 x 模式。

傳回

使用 mode 四捨五入 x 為最接近整數的結果。

實作

適用於

Round(Single, Int32, MidpointRounding)

來源:
Single.cs
來源:
Single.cs
來源:
Single.cs

使用預設進位模式將值四捨五入為指定的小數位數, () ToEven

public:
 static float Round(float x, int digits, MidpointRounding mode) = System::Numerics::IFloatingPoint<float>::Round;
public static float Round (float x, int digits, MidpointRounding mode);
static member Round : single * int * MidpointRounding -> single
Public Shared Function Round (x As Single, digits As Integer, mode As MidpointRounding) As Single

參數

x
Single

要捨入的值。

digits
Int32

應四捨五入的小數位數 x

mode
MidpointRounding

應該四捨五入的 x 模式。

傳回

使用 mode 四舍五 x 入為 digits 小數位數的結果。

實作

適用於