gpt4 book ai didi

objective-c - 我可以将 boost::bind() 转换为 Objective C 函数吗?

转载 作者:太空狗 更新时间:2023-10-30 03:26:00 24 4
gpt4 key购买 nike

我不知道这是否可行,但如果可行,语法会是什么样子?

如果不可能,为什么不呢?

最佳答案

您应该能够绑定(bind)到消息实现 (IMP),它只是带有两个隐藏参数的普通 C 函数,self_cmd 分别为 idSEL 类型。

编辑:刚刚测试了以下完整示例,它似乎有效。

#include <stdio.h>
#include <boost/bind.hpp>
#include <Foundation/NSObject.h>

@interface MyClass : NSObject
{
}
-(int) doSomething:(int)arg;
@end

@implementation MyClass
-(int) doSomething:(int)arg
{
printf("doSomething: self=0x%08x _cmd=0x%08x\n", self, _cmd);
return arg + 1;
}
@end

int main(void)
{
MyClass *myObj = [[MyClass alloc] init], *otherObj = [[MyClass alloc] init];
typedef int (*MyFunc)(id, SEL, int);
SEL doSomething_sel = @selector(doSomething:);
MyFunc doSomething_impl = (MyFunc)[myObj methodForSelector:doSomething_sel];

// bind self & _cmd arguments:
// calls [myObj doSomething:x]
int result = boost::bind(doSomething_impl, myObj, doSomething_sel, _1)(14);
printf("result1: %d\n", result);

// bind _cmd & arg:
// calls [otherObj doSomething:3]
result = boost::bind(doSomething_impl, _1, doSomething_sel, 42)(otherObj);
printf("result2: %d\n", result);

return 0;
}

使用 GNUstep,编译为:

gcc objcbind.mm -o objcbind -I/usr/include/GNUstep -lobjc -lstdc++ -lgnustep-base

在 Mac OS X 上,编译为:

gcc objcbind.mm -o objcbind -framework Foundation -lstdc++

输出:

doSomething: self=0x01a85f70 _cmd=0x00602220result1: 15doSomething: self=0x01a83d70 _cmd=0x00602220result2: 43

关于objective-c - 我可以将 boost::bind() 转换为 Objective C 函数吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1020028/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com