关于c#中|=的问题

发布于 2024-11-29 16:10:25 字数 100 浏览 0 评论 0原文

C#中|=是什么意思?

示例:

int a= 0;
int b = a |= 5;

我找不到任何提示。

What means |= in c#?

Example:

int a= 0;
int b = a |= 5;

I can't find any hints for this.

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

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

发布评论

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

评论(6

挽袖吟 2024-12-06 16:10:25

OR 赋值运算符。

完整的解释在这里。
http://msdn.microsoft.com/en-us/library/h5f1zzaw (v=vs.71).aspx

the OR assignment operator.

full explanation is here.
http://msdn.microsoft.com/en-us/library/h5f1zzaw(v=vs.71).aspx

梦幻的味道 2024-12-06 16:10:25

“|”是按位或运算符。 http://msdn.microsoft.com/en- us/library/kxszd0kx(v=vs.71).aspx

所以,

a |= 5;

是一样的

a = a | 5;

"|" is a bitwise OR operator. http://msdn.microsoft.com/en-us/library/kxszd0kx(v=vs.71).aspx

So,

a |= 5;

is the same as

a = a | 5;
治碍 2024-12-06 16:10:25

这是在 MSDN 库中的 c# 操作符下

http://msdn.microsoft.com /en-us/library/h5f1zzaw.aspx

This is in the MSDN Library under operators for c#

http://msdn.microsoft.com/en-us/library/h5f1zzaw.aspx

时常饿 2024-12-06 16:10:25

它是一个赋值运算符,对整数操作数执行按位逻辑或,对布尔操作数执行逻辑或。

http://msdn.microsoft.com/en-我们/库/h5f1zzaw(v=VS.100).aspx

It is an assignment operator that performs a bitwise logical OR on integral operands and a logical OR on bool operands.

http://msdn.microsoft.com/en-us/library/h5f1zzaw(v=VS.100).aspx

浮生面具三千个 2024-12-06 16:10:25

按位或。

你的片段就变成了。

int a = 0;
int b;
a = a | 5;
b = a;

最终a=b=5

Bitwise or.

Your snippet becomes.

int a = 0;
int b;
a = a | 5;
b = a;

In the end, a = b = 5

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