gpt4 book ai didi

java - java中的if条件

转载 作者:搜寻专家 更新时间:2023-11-01 04:03:31 30 4
gpt4 key购买 nike

If 下面给出的逻辑在 C 语言中运行良好,但在 java 中不起作用....为什么..??
编译时在 java 中给出错误。

class test
{
public static void main(String[] args)
{
int i;
if(i=4)
System.out.println("hello");
}
}

最佳答案

您需要在 if 语句中使用比较运算符 (==) 而不是赋值运算符 (=)。

在 C 中,有效赋值运算符的结果 is the value that is assigned .如果您的示例是用 C 语言编写的,则生成的代码将等效于 if(4),它的计算结果为 true 语句,并且代码始终会在编译器没有任何提示的情况下执行。 Java 会检查一些您可能有其他意思的情况,例如这个。

关于java - java中的if条件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6663039/

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