C/C++ 中的 ^= 是什么意思?

发布于 2024-10-20 04:23:12 字数 107 浏览 1 评论 0原文

我有以下代码行:

contents[pos++] ^= key[shift++];

运算符 ^= 是什么意思?

I have the following line of code:

contents[pos++] ^= key[shift++];

What does operator ^= mean?

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

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

发布评论

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

评论(4

篱下浅笙歌 2024-10-27 04:23:13

它是XOR 赋值运算符。基本上:

x ^= y;

与: 相同

x = x ^ y;

It is the XOR assignment operator. Basically:

x ^= y;

is the same as:

x = x ^ y;
命比纸薄 2024-10-27 04:23:13

这意味着使用 contents[pos++] 执行 XOR 运算 >key[shift++] 并将 contents[pos++] 设置为等于结果。

例子:

contents[pos++]     00010101
key[shift++]        10010001
                    --------
                    10000100

This means preform an XOR operation on contents[pos++] using key[shift++] and set contents[pos++] equal to the result.

Example:

contents[pos++]     00010101
key[shift++]        10010001
                    --------
                    10000100
与酒说心事 2024-10-27 04:23:13

它是一个按位异或运算符。

x ^= y

当然

x = x ^ y

,这是一个按位运算

http://en.wikipedia.org/wiki/Bitwise_operation

It is a bitwise XOR operator.

x ^= y

is basically

x = x ^ y

of course, this is a bitwise operation

http://en.wikipedia.org/wiki/Bitwise_operation

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