当前位置: 技术问答>java相关
谁能告诉我,在JAVA中,哪个函数和ASP中的Int()函数等同,也就是取整函数
来源: 互联网 发布时间:2015-07-24
本文导语: 谁能告诉我,在JAVA中,哪个函数和ASP中的Int()函数等同,也就是取整函数 ,例如:a=12.3,b=Int(a),b=12,拜托各位了! | intValue public int intValue()Returns the value of this Double as an int (by casting to...
谁能告诉我,在JAVA中,哪个函数和ASP中的Int()函数等同,也就是取整函数
,例如:a=12.3,b=Int(a),b=12,拜托各位了!
,例如:a=12.3,b=Int(a),b=12,拜托各位了!
|
intValue
public int intValue()Returns the value of this Double as an int (by casting to type int).
Specified by:
intValue in class Number
Returns:
the double value represented by this object converted to type int
public int intValue()Returns the value of this Double as an int (by casting to type int).
Specified by:
intValue in class Number
Returns:
the double value represented by this object converted to type int
|
你可以用
double Math.ceil(double) 将一个数舍入为大于等于他的最小整数
double Math.floor(double)将一个数舍入为小于等于他的最小整数
double Math.rint(double) 将一个浮点数舍入为同他的最接近的整数
int Math.round(float) 将一个浮点数舍入为同他最接近的整数
double Math.ceil(double) 将一个数舍入为大于等于他的最小整数
double Math.floor(double)将一个数舍入为小于等于他的最小整数
double Math.rint(double) 将一个浮点数舍入为同他的最接近的整数
int Math.round(float) 将一个浮点数舍入为同他最接近的整数
|
同意楼上的
|
double x=12.6;
int nx=(int)Math.round(x);//四舍五入方法,nx=13;
还有简单的去掉小数部分:
double x=12.6;
int nx=(int)x;//nx=12;
int nx=(int)Math.round(x);//四舍五入方法,nx=13;
还有简单的去掉小数部分:
double x=12.6;
int nx=(int)x;//nx=12;