I had a perception that, type of a lambda is a function pointer. When I performed following test, I found it to be wrong (demo).

#define LAMBDA [] (int i) -> long { return 0; }
int main ()
{
  long (*pFptr)(int) = LAMBDA;  // ok
  auto pAuto = LAMBDA;  // ok
  assert(typeid(pFptr) == typeid(pAuto));  // assertion fails !
}

Is above code missing any point ? If not then, what is the typeof a lambda expression when deduced with auto keyword ?

link|improve this question

3  
“type of a lambda is a function pointer” – that would be inefficient and miss the whole point of lambdas. – Konrad Rudolph Oct 31 '11 at 11:42
@KonradRudolph, you are correct. I really din't think about this inefficiency point. Thanks. – iammilind Oct 31 '11 at 11:52
feedback

4 Answers

up vote 33 down vote accepted

The type of a lambda expression is unspecified.

But they are generally mere syntactic sugar for functors. A lambda is translated directly into a functor. Anything inside the [] are turned into constructor parameters and members of the functor object, and the parameters inside () are turned into parameters for the functor's operator().

A lambda which captures no variables (nothing inside the []'s) can be converted into a function pointer (MSVC2010 doesn't support this, if that's your compiler, but this conversion is part of the standard).

But the actual type of the lambda isn't a function pointer. It's some unspecified functor type.

link|improve this answer
+1. Interesting post. :-) – Nawaz Oct 31 '11 at 8:59
MSVC2010 doesn't support conversion to function pointer, but MSVC11 does. blogs.msdn.com/b/vcblog/archive/2011/09/12/10209291.aspx – KindDragon Oct 31 '11 at 17:04
2  
+1 for "mere syntactic sugar for functors." Much potential confusion can be avoided by remembering this. – Ben Oct 31 '11 at 19:13
feedback

It is a unique unnamed structure that overloads the function call operator. Every instance of a lambda introduces a new type.

In the special case of a non-capturing lambda, the structure in addition has an implicit conversion to a function pointer.

link|improve this answer
Nice answer. Much more precise than mine. +1 :) – jalf Oct 31 '11 at 9:17
1  
+1 for the unicity part, it's very surprising at first and merit attention. – Matthieu M. Oct 31 '11 at 9:41
3  
Unicity? Is that what other people call uniqueness? ;) – jalf Oct 31 '11 at 12:10
Not that it really matters, but is the type really unnamed, or is it just not given a name until compilation time? IOW, could one use RTTI to find the name the compiler decided upon? – Ben Oct 31 '11 at 19:17
1  
@Ben, it is unnamed and as far as the C++ language is concerned, there is no such thing as "a name the compiler decides upon". The result of type_info::name() is implementation-defined, so it may return anything. In practice, the compiler will name the type for the sake of the linker. – avakar Oct 31 '11 at 19:46
feedback
#include <iostream>
#include <typeinfo>

#define LAMBDA [] (int i)->long { return 0l; }
int main ()
{
  long (*pFptr)(int) = LAMBDA;  // ok
  auto pAuto = LAMBDA;  // ok

  std::cout<<typeid( *pAuto ).name() << std::endl;
  std::cout<<typeid( *pFptr ).name() << std::endl;

  std::cout<<typeid( pAuto ).name() << std::endl;
  std::cout<<typeid( pFptr ).name() << std::endl;
}

The function types are indeed same, but the lambda introduces new type (like a functor).

link|improve this answer
feedback

A practical solution from How can I store a boost::bind object as a class member?, try boost::function<void(int)> or std::function<void(int)>.

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.