IFloatingPoint<TSelf>.Round 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
多載
| 名稱 | Description |
|---|---|
| Round(TSelf) |
使用預設的四捨五入模式(ToEven)將值捨入至最近的整數。 |
| Round(TSelf, Int32) |
使用預設的四捨五入模式()ToEven將數值四捨五入至指定數量的分數位數。 |
| Round(TSelf, MidpointRounding) |
使用指定的四捨五入模式將值捨入至最近的整數。 |
| Round(TSelf, Int32, MidpointRounding) |
利用指定的四捨五入模式,將數值四捨五入至指定數量的整數位數。 |
Round(TSelf)
使用預設的四捨五入模式(ToEven)將值捨入至最近的整數。
public:
static override TSelf Round(TSelf x);
public static virtual TSelf Round(TSelf x);
static member Round : 'Self -> 'Self
Public Shared Overrides Function Round (x As TSelf) As TSelf
參數
- x
- TSelf
要捨入的值。
傳回
這是使用預設四捨五入模式將整數取入 x 到最近的整數的結果。
適用於
Round(TSelf, Int32)
使用預設的四捨五入模式()ToEven將數值四捨五入至指定數量的分數位數。
public:
static override TSelf Round(TSelf x, int digits);
public static virtual TSelf Round(TSelf x, int digits);
static member Round : 'Self * int -> 'Self
Public Shared Overrides Function Round (x As TSelf, digits As Integer) As TSelf
參數
- x
- TSelf
要捨入的值。
- digits
- Int32
應四捨五入的 x 整數位數。
傳回
這是使用預設四捨五入模式將整數xdigits到小數位數的結果。
適用於
Round(TSelf, MidpointRounding)
使用指定的四捨五入模式將值捨入至最近的整數。
public:
static override TSelf Round(TSelf x, MidpointRounding mode);
public static virtual TSelf Round(TSelf x, MidpointRounding mode);
static member Round : 'Self * MidpointRounding -> 'Self
Public Shared Overrides Function Round (x As TSelf, mode As MidpointRounding) As TSelf
參數
- x
- TSelf
要捨入的值。
- mode
- MidpointRounding
在該 x 模式下應該四捨五入。
傳回
這是將整數取入 x 為最近整數的結果 mode。
適用於
Round(TSelf, Int32, MidpointRounding)
利用指定的四捨五入模式,將數值四捨五入至指定數量的整數位數。
public:
static TSelf Round(TSelf x, int digits, MidpointRounding mode);
public static abstract TSelf Round(TSelf x, int digits, MidpointRounding mode);
static member Round : 'Self * int * MidpointRounding -> 'Self
Public Shared Function Round (x As TSelf, digits As Integer, mode As MidpointRounding) As TSelf
參數
- x
- TSelf
要捨入的值。
- digits
- Int32
應四捨五入的 x 整數位數。
- mode
- MidpointRounding
在該 x 模式下應該四捨五入。
傳回
這是利用 mode將整數為 xdigits 的結果。