位置:首頁 > Java技術 > Java教學 > Java round()方法

Java round()方法

描述:

該方法返回最接近或int/long整型,返回給定方法的參數類型。.

語法

這種方法有以下變種:

long round(double d)
int round(float f)

參數

下麵是參數的詳細信息:

  • d --  double 或 float 原始數據類型

  • f -- float 原始數據類型

返回值

  • 此方法返回最接近的 long或者int,通過該方法的返回該參數類型所指出的一致。

例子:

public class Test{ 

   public static void main(String args[]){
      double d = 100.675;
      double e = 100.500;
      float f = 100;
      float g = 90f;

      System.out.println(Math.round(d));
      System.out.println(Math.round(e)); 
      System.out.println(Math.round(f)); 
      System.out.println(Math.round(g)); 
   }
}

這將產生以下結果:

101
101
100
90