I was exploring C++0x today, and I encountered the new lambda feature. My question is how are these different (in terms of use) from blocks and why might one prefer one over the other?

Thanks.

link|improve this question

70% accept rate
1  
I'd prefer lambdas because they are standard, thus portable among compilers conforming to the latest standard and easily usable with the standard library. – Matteo Italia Aug 15 '11 at 22:15
@Matteo: so are the blocks -- in Objective C – Vlad Aug 15 '11 at 22:16
2  
@Vlad: and in Objective C you don't have lambdas, so it makes no sense to "choose between the two alternatives" - because only blocks are available. The only case where you "might prefer one over the other" is where you have choice, i.e. in C++ with Clang (the only compiler I know that supports both), and in that case I'd use lambdas (unless you have some complicated C++/Objective C mixed project, but I'm no expert of such situations). – Matteo Italia Aug 15 '11 at 22:17
Blocks aren't just objective-c I've used them on Ubuntu with Clang and llvm's compiler-rt library for Block_copy and Block_release – Maz Aug 15 '11 at 22:43
feedback

2 Answers

up vote 7 down vote accepted

there is a a short syntax with C++0x lambdas to take every variable in scope by reference. ([&]) The type of a lambda is also unspecified, allowing potentially more optimal code.

Now, when you look at Apple blocks, it will require __block specifiers added to variables you want to modify (the very fact that this is required suggests the whole system is defective). Variables are taken by reference but then by value when the block exits the scope (and the copied context necessarily lives on the heap, it seems). A weird semantic that will only lead to broken designs, but probably makes people that love GC happy. Without saying this probably has quite the efficiency cost, of course, since this requires special indirections.

It is claimed the C++0x lambdas syntax would break compatibility with C programs, but I don't think that is true. There are probably other problems to integrate it with C, though, mainly the fact that C can't really deal with unspecified types and build type erasure.

Apple blocks is really just an ObjC feature they try to generalize to other languages. For C++, the system designed for that language is just so much better.

See this site.

link|improve this answer
4  
Addtionally, lambdas are part of c++, blocks not. So lambdas are portable. Blocks not. – PlasmaHH Aug 16 '11 at 14:07
feedback

I think it basically comes down to a question of your starting point. If you're starting from Objective-C, and writing C++ (Objective-C++) primarily (or exclusively) as an adjunct to Objective-C, then using blocks throughout all the code may make sense, simply to retain as much commonality across the code base. Even if (for example) a project used some pieces written in Objective-C and others in C++, it could make sense to use blocks in both retain as much similarity throughout the code base as possible.

Unless you're using them outside of C++, however, I see little reason to prefer blocks over C++ lambdas. In what I'd guess to be the most common use (a predicate or action in an algorithm) the only noticeable difference between the two would be that one starts with ^ and the other with [].

Internally, it looks like the differences are greater, and these are likely to affect some more advanced uses. For example, blocks work vaguely like C strings, so you use Block_copy to copy one, Block_release to free the copy, and so on. On the other hand, in C++ this is all automated so the copy ctor automatically uses Block_copy and the dtor Block_release as needed. At the same time, it does involve a bit more "magic", so (for example) when you copy a block, the copy is always allocated dynamically, regardless of how the source was allocated.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.