如何在 Objective-C 中(按值)传递结构体?

发布于 2024-08-30 20:50:35 字数 482 浏览 12 评论 0原文

这件事快把我逼疯了!我有一个结构:

typedef struct{
  int a;
}myStruct;

然后我有:

myStruct tempStruct;

我试图将该结构传递给一个类方法,其实现是:

- (void) myFunc:(struct myStruct)oneOfMyStructs{};

我像这样调用该方法:

[myClass myFunc:(struct myStruct)tempStruct];

编译器抱怨“请求转换为非标量类型”。我想做的就是将一个结构传递给一个类方法,但语法让我有点困惑。我是 Objective-C 的新手。如果您能看到我哪里出错了,请告诉我。我也无法通过参考,所以如果你能帮助我解决这个问题,那就太好了!

谢谢!

This one has been driving me mad! I have a struct:

typedef struct{
  int a;
}myStruct;

Then I have:

myStruct tempStruct;

I am trying to pass the struct to a class method whose implementation is:

- (void) myFunc:(struct myStruct)oneOfMyStructs{};

I call the method like so:

[myClass myFunc:(struct myStruct)tempStruct];

The compiler complains about "Conversion to non-scalar type requested." All I want to do is pass a struct into a class method, but the syntax has me a bit confused. I'm new to Objective-C. Please let me know if you can see where I'm going wrong. I've not been able to pass by reference either, so if you could help me out with that, that would be great!

Thanks!

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

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

发布评论

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

评论(1

零度° 2024-09-06 20:50:35

由于您已将其 typedef-ed 为 myStruct,因此您不需要(确实不能)在函数中包含 struct 关键字签名或电话:

typedef struct tag_myStruct
{
    int a;
}
myStruct;

- (void) myFunc:(myStruct) x {}

[myClass myFunc:tmpStruct];

应该足够了。 (比较所有那些采用 NSRect 之类的 Cocoa 函数。)

Since you have typedef-ed it to myStruct, you don't need to (indeed mustn't) include the struct keyword in the function signature or the call:

typedef struct tag_myStruct
{
    int a;
}
myStruct;

- (void) myFunc:(myStruct) x {}

[myClass myFunc:tmpStruct];

should be sufficient. (Compare all those Cocoa functions that take things like NSRects.)

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