为什么“x ^= true”在这个例子中产生 false 吗?

发布于 2024-08-17 02:21:56 字数 197 浏览 6 评论 0原文

为什么当前面的语句产生 true 时,语句 z ^= true 产生 false ?

bool v = true;
bool z = false;

z ^= v;
Console.WriteLine(z);

z ^= true;
Console.WriteLine(z);

OUTPUT
======
True
False

Why does the statement z ^= true produce a false when the previous produces a true ?

bool v = true;
bool z = false;

z ^= v;
Console.WriteLine(z);

z ^= true;
Console.WriteLine(z);

OUTPUT
======
True
False

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

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

发布评论

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

评论(6

別甾虛僞 2024-08-24 02:21:56

因为它改变了第一个语句中 z 的值。

Because it changes the value of z in the first statement.

四叶草在未来唯美盛开 2024-08-24 02:21:56

因为:

false ^ true == true
true ^ true == false

参见http://en.wikipedia.org/wiki/Xor

Because:

false ^ true == true
true ^ true == false

See http://en.wikipedia.org/wiki/Xor

半﹌身腐败 2024-08-24 02:21:56

^ 表示 XOR,如果一侧但不是两侧都为真,则 XOR 被定义为 true,而在其他情况下定义为 false。

所以

z ^= v 表示 z = false ^ true,表示 true

z ^= true 表示 z = true ^ true,表示 false

请注意,^= 更改了第一条和第二条语句中变量的值

^ Means XOR, XOR is defined as true if one but not both sides are true, and is defined as false in every other case.

So

z ^= v means z = false ^ true, which means true

z ^= true means z = true ^ true, which is false

Note that ^= changes the value of the variable in the first and second statement

瑶笙 2024-08-24 02:21:56

XOR (^) 的真值表为

a    b    a^b
0    0     0
0    1     1
1    0     1
1    1     0

运算 lhs ^= rhs 基本上只是 lhs = lhs 的简写^rhs。因此,在您的第一个 ^= 应用程序中,您更改了 z 的值,这(根据 ^ 的定义)改变了结果第二个应用程序。

The truth table for XOR (^) is

a    b    a^b
0    0     0
0    1     1
1    0     1
1    1     0

The operation lhs ^= rhs is basically just a short-hand for lhs = lhs ^ rhs. So, in your first application of ^= you alter the value of z, which (in accordance with the definition of ^) changes the outcome of the second application.

婴鹅 2024-08-24 02:21:56

false XOR true = true,则将 z 设置为 true;
true XOR true = false,然后将 z 设置为 false。

false XOR true = true, then you set z to true;
true XOR true = false, then you set z to false.

一抹微笑 2024-08-24 02:21:56

x ^= y 形式的表达式计算为 x = x ^ y

x ^ y (XOR) 的结果是 true 当且仅当恰好有一个其操作数为true

结论:当x == true时,x ^= true将产生true

An expression of the form x ^= y is evaluated as x = x ^ y

The result of x ^ y (XOR) is true if and only if exactly one of its operands is true.

conclusion: x ^= true will produce true when x == true.

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