Java int 与 Double
public double calc(int v1) {
return v1 / 2 + 1.5;
}
public double cald (double v) {
return v / 2 + 1.5;
}
这些函数返回相同的结果吗?
我认为它们不会返回相同的结果,因为第二个函数将包含小数点,而第二个函数会将数字向上舍入。
这是正确的吗?
public double calc(int v1) {
return v1 / 2 + 1.5;
}
public double cald (double v) {
return v / 2 + 1.5;
}
Do the functions return the same result?
I would argue that they don't return the same result, as the second function would include the decimal point, where as the second function would round the number up.
Is that correct?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
当您将
a
除以b
时,即a/b
if both
a
&b
是int
那么结果将是int
else 任何或两者
a
&b
是double
那么结果将是double
编辑:
另请参阅我对此问题的回答 简单除法问题
when you divide
a
byb
i.ea/b
if both
a
&b
areint
then result will beint
else any or both
a
&b
aredouble
then result will bedouble
Edit:
Also see my answer to this Question Simple Divide Problem
他们不会:在 IDEONE 上查看示例、克隆它并使用它。
They don't: see sample on IDEONE, clone it and play with it.
它是一个整数除以一个以上的整数。
或者在你的例子中 1 / 2,它是 0.5,但它是整数除法,所以将是 0,更多 1.5,返回 1.5。
在本例中,除法是在 double 和 int 之间进行的,返回值为 0.5 的 double,与 1.5 相加将返回 2.0。
it is an integer divided by an integer more double.
Or in your case 1 / 2, that it is 0.5, but it is a division amoung ints, so will be 0, more 1.5, return 1.5.
This case, the division is between an double and an int, returning an double of value 0.5, summing with 1.5 will return 2.0.
他们返回的结果不一样。如果数字是整数,
/
默认是整数除法,即如果a是整数,则a/2
的结果是整数,没有提示。而如果 a 是双精度型,则该除法的结果也是双精度型。They don't return the same.
/
on default is integer division if the numbers are integers, i.e., the result ofa/2
is an integer without the reminder if a is an integer. while if a is a double, then the result of this division is a double.