IFloatingPoint<TSelf>.Round メソッド
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
オーバーロード
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
丸める値。
戻り値
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
小数部の桁数。
戻り値
TSelf
既定の丸めモードをx
digits
使用して小数部に丸める結果。
適用対象
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
必要があるモード。
戻り値
TSelf
を使用してmode
最も近い整数に丸めるx
結果。
適用対象
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
必要があるモード。
戻り値
TSelf
を使用してmode
小数部にdigits
丸めるx
結果。
適用対象
GitHub で Microsoft と共同作業する
このコンテンツのソースは GitHub にあります。そこで、issue や pull request を作成および確認することもできます。 詳細については、共同作成者ガイドを参照してください。
.NET