Objective-C Blocks in C

蓝咒 提交于 2020-06-10 04:02:33

问题


While reading through the blocks conceptual overview in Apple Docs, I saw the following statement:

Although blocks are available to pure C and C++, a block is also always an Objective-C object.

How is this possible? I mean an Objective-C object available in pure C. I'm getting confused.


回答1:


How is this possible? I mean an Objective-C object available in pure C.

Matt Gallagher wrote an article that nicely explains how blocks work. In a nutshell, blocks are defined as structs that meet the requirements to be a valid Objective-C object (for example, the struct starts with an isa pointer). None of this causes a problem for C, and the compiler knows what the definition of a block is, so even when compiling plain old C it can still do the right thing to make blocks work.

The added Objective-C aspect of blocks doesn't affect how blocks are used in C, but still provides the ability to treat blocks as objects so that they can be added to collections and otherwise managed like any other object.

This isn't really so strange. If you think about it, all Objective-C objects are "available" in C at some level -- the entire Objective-C runtime consists of C functions that manipulate structures that represent Objective-C objects and classes. And even disregarding that, blocks aren't the first example of a data type that's usable in both C and Objective-C -- we've had toll free bridging between Foundation and Core Foundation for many years. The implementation of blocks may be somewhat different, but it's not a new thing to have objects that work in both worlds.




回答2:


Objective-C can be freely mixed with C. As long as your class has a C API (which blocks do, with Block_copy, Block_release, etc.), the C code doesn't care if it's implemented in Objective-C or C.




回答3:


From the same document,

float (^oneFrom)(float);

oneFrom = ^(float aFloat) {
    float result = aFloat - 1.0;
    return result;
};

oneFrom a variable referencing the block (object) { float result = aFloat - 1.0; return result; }

Blocks are available to pure C and C++, ie. the block can consist of pure C or C++ code.



来源:https://stackoverflow.com/questions/22539333/objective-c-blocks-in-c

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