gpt4 book ai didi

java - 为什么在第二种情况下不允许字符串连接?

转载 作者:行者123 更新时间:2023-11-30 02:30:11 26 4
gpt4 key购买 nike

第二种情况给出编译错误,显示 5 是字符串,而 4 是整数。第一种情况也应该是这种情况,但它给出了输出。为什么???

class Test
{
public static void main(String args[])
{
System.out.println("The sum is: "+5*4); //Gives output The sum is: 20

System.out.println("The sum is: "+5-4);

//Gives compilation error shows 5 is string while 4 is int.This should be the case with prevous case also but it gives output.Why????
}
}

最佳答案

operator precedence 的 Java 规则说明 *+ 结合得更紧密,但 - 则不然。

这意味着第一个表达式与 "The sum is: "+ (5 * 4) 相同,其计算结果为 "The sum is: 20" 。但是,第二个表达式与 ("The sum is: "+ 5) - 4 相同,这没有任何意义 - 您不能从 String 中减去数字.

关于java - 为什么在第二种情况下不允许字符串连接?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44473032/

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