Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Im trying to use a lambdas as a static member, like this:

struct A
{
    static constexpr auto F = [](){};
};


int main()
{
    A::F();
    return 0;
}

Is this even correct C++11 code? On clang, I get this error:

error: constexpr variable 'F' must be initialized by a constant
      expression
    static constexpr auto F = [](){};
                              ^~~~~~

It seems in clang, lambdas aren't considered a constant expression. Is this correct? Perhaps they haven't fully implemented lamdas yet in clang because gcc 4.7 seems to allow it as a constexpr, but it give another error:

error: ‘constexpr const<lambda()> A::F’, declared using local type ‘const<lambda()>’, is used but never defined

Im not sure, I understand what that means. It seems to correctly deduce the type of the lambda, but it only declares it and not define it. How would I go about defining it?

share|improve this question
10  
Can I be super unhelpful and ask, uh, "Why on earth would you want to do this?" What would this construction do that a normal member function would not? – Rook Jul 30 '12 at 16:57
@Rook Save him to write the return type and we can throw the static constexpr auto noise into a macro. – pmr Jul 30 '12 at 17:02
Because type deduction is much better with lambdas than member functions. – Paul Jul 30 '12 at 17:02
3  
@Paul: so is the actual issue here that you're working with functions that have particularly crazy and unwieldy return types? – Rook Jul 30 '12 at 17:06
1  
@Paul: ahh, that makes a lot more sense now. It looks to me a lot like you are operating at the bleeding edge of C++, so you might have to wait for compilers to catch up with you. I note VC++ 2012 can't even manage constexpr yet, either. What you're doing doesn't look like it contravenes the standard, but I may well be misreading things. – Rook Jul 30 '12 at 17:41
show 2 more comments

1 Answer

up vote 9 down vote accepted

This code is ill-formed. A constexpr variable is required to be initialized by a constant expression, and [expr.const]p2 says:

A conditional-expression is a core constant expression unless it involves one of the following as a potentially evaluated subexpression [...]:

  • a lambda-expression

GCC is therefore incorrect to accept this code.

Here's one way to give a class a static data member of lambda type:

auto a = []{};
struct S {
  static decltype(a) b;
};
decltype(a) S::b = a;
share|improve this answer
GCC is therefore incorrect to accept this code. I think it's not that simple. Is diagnostic/error required for this case? There are many ill-formated programs that give no compiler error/warning (and for good reason) – Johan Lundberg Jul 31 '12 at 10:32
Constexpr aside, is there no possible way to create a lambda as a static member to a class in C++11? – Paul Jul 31 '12 at 19:19
2  
@LucDanton Constant expressions are defined in terms of core constant expressions, so p2 is relevant. See p3. The different of "constant expression" and "core constant expression" is not "syntax" vs "semantics" but, as far as I can remember, "actual compile-time known value or reference" vs "intermediate result in computing a constant expression". So, the address of a non-static local variable is a valid core constant expression. But as that address's value is not really known at compile time, it is not an address constant expression. – Johannes Schaub - litb Aug 2 '12 at 20:19
1  
@JohanLundberg Yes, a diagnostic is required for every rule, including this one, unless otherwise stated. See [intro.compliance]p2. – Richard Smith Aug 3 '12 at 21:25
1  
@Paul I think you're out of luck. There are some tricks to get the lambda expression inside the template and extract its type, such as template<typename T> std::remove_reference<T>::type *addr(T &&t) { return &t; } struct S { constexpr static auto *p = false ? addr([]{}) : nullptr; static decltype(*p) lambda; };, but even then it's not possible to provide an initializer for S::lambda. – Richard Smith Aug 6 '12 at 4:30
show 5 more comments

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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