和 之间的区别(& 符号)和 &&或 | (管道) 和 || 在 Objective-C 中?

发布于 2024-10-03 19:30:03 字数 115 浏览 4 评论 0原文

我想知道 Objective-C 是否关心我是否写 &或&&?我相信一个与号(&)会或应该导致如果左侧已经为假,则不会评估右侧。

这适用于 Objective-C 吗?

I wonder if Objective-C does care about whether I write & or &&? I believe one ampersand (&) would or should cause that if the LEFT side is already false, then the right side won't be evaluated.

Does this apply to Objective-C?

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

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

发布评论

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

评论(2

说好的呢 2024-10-10 19:30:03

是的。 运算符在 C 和 Objective-C 中的功能相同。

就像在 C(或 C++,如果您使用的是 Objective-C++)中一样,&| 是按位的,而 && > 和 || 是逻辑的(并且短路)。按位运算符(&|不是短路。

请参阅C 和 C++ 中的运算符

Yes. The operators function identically in C and Objective-C.

Just like in C (or C++, if you're using Objective-C++) & and | are bit-wise and && and || are logical (and short-circuit). Bit-wise operators (& and |) are not short-circuit.

See Operators in C and C++

℉服软 2024-10-10 19:30:03

Objective-C 使用 C 位运算符和逻辑运算符(& 是按位运算符,&& 是逻辑运算符)。单曲&将评估两个表达式。

Objective-C uses the C bitwise and logical operators (& is bitwise and && is logical). The single & will evaluate both expressions.

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