double类型转换成int类型

double v = a / b;
        int i = new Double(v).intValue();

你可能感兴趣的:(double类型转换成int类型)