Java round()方法

2019-10-16 22:22:58

round()方法返回最接近引數的longint型別值,由方法返回型別給出。

語法

此方法有以下變體 -

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

引數

  • d - doublefloat原始資料型別。
  • f - 浮點原始資料型別。

返回值

  • 此方法返回最接近的longint型別值,使用方法指定返回型別來返回引數。

範例

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