gpt4 book ai didi

java - 三元运算符

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

为什么以下代码的输出是 9.0 而不是 9 ?如果三元运算符只是 if-else 分支的缩写形式,那么为什么 java 编译器将 int 提升为 double ?

public class Ternary
{
public static void main(String args[])
{
int a = 5;
System.out.println("Value is - " + ((a < 5) ? 9.9 : 9));
}
}

最佳答案

If ternary operator is nothing but short form of if-else branch then why java compiler is promoting int to double ?

条件表达式只有一种类型,第二个和第三个操作数都会根据需要转换为该类型。 JLS给出了判断表达式类型的规则,由于自动拆箱,稍微复杂一些。

条件运算符有点只是if/else 构造的简写,但不是我认为您期望的那种简写。所以你的代码等同于:

double value;
if (a < 5) {
value = 9.9;
} else {
value = 9;
}
System.out.println("Value is - " + value);

不是的缩写:

if (a < 5) {
System.out.println("Value is - " + 9.9);
} else {
System.out.println("Value is - " + 9);
}

有关详细信息,请参阅 section 15.25 of the Java Language Specification .

关于java - 三元运算符,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14796537/

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