简单问题,在java中怎样将float型转化为int型

2024-12-17 18:47:35
推荐回答(3个)
回答1:

直接强转就行了啊, float a = 5.3f ; int b = ( int )a; 只是说这样会损失精度。 就是b的值为5

回答2:

int demo = Math.round(float);

回答3:

Integer.parseInt()