在java中int和Integer在进行除法运算时,总是得到0,是因为整数相除后还是整数int,所以小数点后面的数都被省略掉了,只保留小数点之前的数。
对整数进行强制转换。
- public class Demo {
-
- public static void main(String[] args) {
- Integer a = 123;
- Integer b = 456;
- int c = 123;
- int d = 456;
- System.out.println(a/b);
- System.out.println(c/d);
- }
- }
得到的结果:
- 0
- 0
强制转换后:
- public class Demo {
-
- public static void main(String[] args) {
- Integer a = 123;
- Integer b = 456;
- int c = 123;
- int d = 456;
- System.out.println(a/b);
- System.out.println(c/d);
- System.out.println((double)a/b);
- System.out.println((double)c/d);
- System.out.println((float)a/b);
- System.out.println((float)c/d);
- }
- }
- 0
- 0
- 0.26973684210526316
- 0.26973684210526316
- 0.26973686
- 0.26973686
如果想小数点后保留几位数,请看下面这篇: