!flag在java中有两种含义?

发布于 2024-11-23 16:31:49 字数 218 浏览 3 评论 0原文

boolean flag = false;
if(!flag) System.out.println(!flag); // prints true

我想知道为什么 !flag 当它是传递给 if 语句 的条件参数并在其他地方被视为 true 时被视为 false

boolean flag = false;
if(!flag) System.out.println(!flag); // prints true

I wonder why !flag being considered as false when it's a conditional parameter passed to if statement and as true elsewhere?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(5

予囚 2024-11-30 16:31:49

它不是。 if (boolean expression) {statement } 表示“如果布尔表达式为真,则执行语句”。由于flag = false!flag == true。总是。

It's not. if (boolean expression) { statement } means "execute the statement if boolean expression is true." Since flag = false, !flag == true. Always.

猫卆 2024-11-30 16:31:49

!flag(其中 flagfalse)在所有上下文(包括 if 语句)中计算结果为 true

!flag where flag is false evaluates to true in all contexts, including if statements.

倾城°AllureLove 2024-11-30 16:31:49

!flag 不会改变 flag 的值,它只是在求值时否定它。

由于 flag = false!flag!false 相同,后者是 true
您的代码相当于:

if (!false) System.out.println(!false); 

相当于:

if (true) System.out.println(true); 

!flag does not change the value of flag, it merely negates it when evaluating it.

Since flag = false, !flag is identical to !false which is true.
Your code is equivalent to this:

if (!false) System.out.println(!false); 

which is equivalent to:

if (true) System.out.println(true); 
梦里寻她 2024-11-30 16:31:49

好吧,您可能误解了条件运算符的评估。当且仅当条件计算结果为 true 时,if 运算符才会执行内部语句。

现在,flag 等于false。这意味着 flag 的否定将为 true (!false = true)。这就是执行 if 条件中的 tne 语句并将 trueflag 的负值)写入控制台输出的原因。

Well, you are probably misinterpreting the evaluation of conditional operator. The if operator performs the statements inside, if and only if the condition is evaluated as true.

Now, flag is equal to false. This means that negation of flag will be true (!false = true). This is why tne statement inside the if confition is performed and writes true (the negated value of flag) to your console output.

你在我安 2024-11-30 16:31:49

用人类语言:

如果 flag 不为 true,则打印出“flag”的相反值

in human language:

if flag is not true, print out the opposite value of "flag"

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