如何通过间接传递(和设置)非对象?

发布于 2024-12-02 13:18:28 字数 820 浏览 0 评论 0原文

NSError 对象经常像这样使用(取自 这之前问题):

- (id)doStuff:(id)withAnotherObjc error:(NSError **)error;

我想通过 BOOL 间接实现类似的目标:

- (id)doStuff:(id)withAnotherObjc andExtraBoolResult:(BOOL **)extraBool;

但我不知道如何让它正常工作。

对于涉及 NSError 的给定方法规范,正确的实现将涉及类似的内容(同样来自 上一个问题):

*error = [NSError errorWithDomain:...];

通过类似的逻辑,似乎这应该适用于 BOOL 间接:

*extraBool = &YES; // ERROR! Address expression must be an lvalue or a function designator

为什么这不起作用以及实现此目的的正确方法是什么?

NSError objects are frequently used like this (taken from this previous question):

- (id)doStuff:(id)withAnotherObjc error:(NSError **)error;

I want to achieve something similar with BOOL indirection:

- (id)doStuff:(id)withAnotherObjc andExtraBoolResult:(BOOL **)extraBool;

But I can't figure out how to get this working correctly.

For the given method specification involving NSError, the proper implementation would involve something like (again from the previous question):

*error = [NSError errorWithDomain:...];

With similar logic, it seems like this should work with BOOL indirection:

*extraBool = &YES; // ERROR! Address expression must be an lvalue or a function designator

Why doesn't this work and what is the proper way to implement this?

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

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

发布评论

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

评论(1

另类 2024-12-09 13:18:28

请记住,对于对象,您正在使用指针(例如,NSError*),因此使用此方法,您最终会得到一个指向指针的指针(例如,NSError* *)。但是,在使用 BOOL 时,您应该使用指向 BOOL 的指针:也就是说,只有一层间接寻址,而不是两层。因此,您的意思是:

- (id)doStuff:(id)withAnotherObjc andExtraBoolResult:(BOOL *)extraBool;

然后:

*extraBool = YES;

Keep in mind that with objects, you're working with a pointer (e.g., NSError*), so using this method, you wind up with a pointer to a pointer (e.g., NSError**). When working with a BOOL, though, you should use a pointer to a BOOL: that is, only one level of indirection, not two. Therefore, you mean:

- (id)doStuff:(id)withAnotherObjc andExtraBoolResult:(BOOL *)extraBool;

and subsequently:

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