在枚举中查找状态的逻辑

发布于 2024-09-26 23:53:22 字数 798 浏览 6 评论 0原文

我有一个方法引入枚举值作为参数。

enum {
   UITableViewCellStateDefaultMask                     = 0,
   UITableViewCellStateShowingEditControlMask          = 1 << 0,
   UITableViewCellStateShowingDeleteConfirmationMask   = 1 << 1
}; 

有四个可能的值:

  1. 只有 UITableViewCellStateDefaultMask 为 true。
  2. 只有 UITableViewCellStateShowingEditControlMask 为 true。
  3. 只有 UITableViewCellStateShowingDeleteConfirmationMask 为 true。
  4. 两者 UITableViewCellStateShowingEditControlMask AND UITableViewCellStateShowingDeleteConfirmationMask 为 true。

最后一种可能性是我遇到的麻烦。当且仅当最后两个选项为 true 时,什么语句才会返回 true???

(顺便说一句,这是 Objective-C 代码)

谢谢!

I have a method that brings in an Enum value as an argument.

enum {
   UITableViewCellStateDefaultMask                     = 0,
   UITableViewCellStateShowingEditControlMask          = 1 << 0,
   UITableViewCellStateShowingDeleteConfirmationMask   = 1 << 1
}; 

There are four possible values:

  1. Only UITableViewCellStateDefaultMask is true.
  2. Only UITableViewCellStateShowingEditControlMask is true.
  3. Only UITableViewCellStateShowingDeleteConfirmationMask is ture.
  4. Both UITableViewCellStateShowingEditControlMask AND UITableViewCellStateShowingDeleteConfirmationMask are true.

That last possibility is the one I'm having trouble with. What statement will return true if and only if the two last options are true????

(This is Objective-C code btw)

Thanks!

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

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

发布评论

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

评论(1

眼眸里的快感 2024-10-03 23:53:22
int mask=UITableViewCellStateShowingEditControlMask|UITableViewCellStateShowingDeleteConfirmationMask;
BOOL result=(value&mask)==mask;

或者

就直接(value&0x03)==0x03 :)

如果你觉得懒的话

int mask=UITableViewCellStateShowingEditControlMask|UITableViewCellStateShowingDeleteConfirmationMask;
BOOL result=(value&mask)==mask;

or just

(value&0x03)==0x03

if you're feeling lazy :)

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