gpt4 book ai didi

java - java中的条件if-else语句

转载 作者:塔克拉玛干 更新时间:2023-11-03 03:07:50 24 4
gpt4 key购买 nike

<分区>

我无法理解下面的代码如何打印 50.0

public class Pre
{
public static void main(String[] args)
{
int x=10;
System.out.println((x > 10) ? 50.0 : 50); //output 50.0
}
}

它应该打印 50(我猜)而不是 50.0

上面的代码是不是等同于下面的代码?,

public class Pre
{
public static void main(String[] args)
{
int x=10;
if(x>10)
System.out.println(50.0);
else
System.out.println(50);//output
}
}

如果它们是等价的,那么为什么输出不同?

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com