Java int 与 Double

发布于 2024-11-07 12:03:01 字数 223 浏览 1 评论 0原文

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(4

℉絮湮 2024-11-14 12:03:01

当您将 a 除以 b 时,即 a/b

if both a & bint 那么结果将是 int
else 任何或两者 a & bdouble 那么结果将是 double

编辑:

另请参阅我对此问题的回答 简单除法问题

when you divide a by b i.e a/b

if both a & b are int then result will be int
else any or both a & b are double then result will be double

Edit:

Also see my answer to this Question Simple Divide Problem

孤凫 2024-11-14 12:03:01

他们不会:在 IDEONE 上查看示例、克隆它并使用它。

System.out.println(calc(1));// gives 1.5
System.out.println(cald(1.0));// gives 2.0

They don't: see sample on IDEONE, clone it and play with it.

System.out.println(calc(1));// gives 1.5
System.out.println(cald(1.0));// gives 2.0
脱离于你 2024-11-14 12:03:01
int v1 = 1;
return v1 / 2 + 1.5; // = 1.5

它是一个整数除以一个以上的整数。
或者在你的例子中 1 / 2,它是 0.5,但它是整数除法,所以将是 0,更多 1.5,返回 1.5。

double v = 1.0;
return v / 2 + 1.5; // = 2.0

在本例中,除法是在 double 和 int 之间进行的,返回值为 0.5 的 double,与 1.5 相加将返回 2.0。

int v1 = 1;
return v1 / 2 + 1.5; // = 1.5

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.

double v = 1.0;
return v / 2 + 1.5; // = 2.0

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.

沙沙粒小 2024-11-14 12:03:01

他们返回的结果不一样。如果数字是整数,/默认是整数除法,即如果a是整数,则a/2的结果是整数,没有提示。而如果 a 是双精度型,则该除法的结果也是双精度型。

5/2 = 2
5.0/2 = 2.5

They don't return the same. / on default is integer division if the numbers are integers, i.e., the result of a/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.

5/2 = 2
5.0/2 = 2.5
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文