round()
方法返回最接近引數的long
或int
型別值,由方法返回型別給出。
語法
此方法有以下變體 -
long round(double d)
int round(float f)
d
- double
或float
原始資料型別。f
- 浮點原始資料型別。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