Objective-C Block type as return value

我怕爱的太早我们不能终老 提交于 2019-12-29 06:00:28

问题


How do I write the following:

typedef void (^T)(void);
T f() {
    return ^{};
}

without the typedef?


回答1:


void (^f())(void) { 
  return ^{};
}

You'd better keep the typedef as the return type is not easy to understand in this form.



来源:https://stackoverflow.com/questions/3948173/objective-c-block-type-as-return-value

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!