MathObject.round(Double) 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
將指定的數字向下或向上化整至最接近的整數。
此 API 支援此產品基礎結構,但無法直接用於程式碼之中。
public:
static double round(double d);
[Microsoft.JScript.JSFunction((Microsoft.JScript.JSFunctionAttributeEnum) 0, Microsoft.JScript.JSBuiltin.Math_round)]
public static double round (double d);
[Microsoft.JScript.JSFunction(Microsoft.JScript.JSFunctionAttributeEnum.None, Microsoft.JScript.JSBuiltin.Math_round)]
public static double round (double d);
[<Microsoft.JScript.JSFunction((Microsoft.JScript.JSFunctionAttributeEnum) 0, Microsoft.JScript.JSBuiltin.Math_round)>]
static member round : double -> double
[<Microsoft.JScript.JSFunction(Microsoft.JScript.JSFunctionAttributeEnum.None, Microsoft.JScript.JSBuiltin.Math_round)>]
static member round : double -> double
Public Shared Function round (d As Double) As Double
參數
- d
- Double
要四捨五入的數字。
傳回
如果 d
的分數部分小於此數字與下一個整數的中間數,則會將 d
向下化整。 如果 d
的分數部分等於或大於此數字與下一個整數的中間數,則會將 d
向上化整。
- 屬性