Half.Round 方法

定義

多載

Round(Half)

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

Round(Half, Int32)

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

Round(Half, MidpointRounding)

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

Round(Half, Int32, MidpointRounding)

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

Round(Half)

來源:
Half.cs
來源:
Half.cs
來源:
Half.cs

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

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

參數

x
Half

要捨入的值。

傳回

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

實作

適用於

Round(Half, Int32)

來源:
Half.cs
來源:
Half.cs
來源:
Half.cs

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

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

參數

x
Half

要捨入的值。

digits
Int32

應四捨五入的小數位數 x

傳回

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

實作

適用於

Round(Half, MidpointRounding)

來源:
Half.cs
來源:
Half.cs
來源:
Half.cs

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

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

參數

x
Half

要捨入的值。

mode
MidpointRounding

應該四捨五入的 x 模式。

傳回

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

實作

適用於

Round(Half, Int32, MidpointRounding)

來源:
Half.cs
來源:
Half.cs
來源:
Half.cs

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

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

參數

x
Half

要捨入的值。

digits
Int32

應四捨五入的小數位數 x

mode
MidpointRounding

應該四捨五入的 x 模式。

傳回

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

實作

適用於