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

Is it possible to capture by const reference in a lambda expression?

I want the assignment marked below to fail, for example:

#include <cstdlib>
#include <vector>
#include <string>
#include <algorithm>
using namespace std;

int main()
{
    string strings[] = 
    {
        "hello",
        "world"
    };
    static const size_t num_strings = sizeof(strings)/sizeof(strings[0]);

    string best_string = "foo";

    for_each( &strings[0], &strings[num_strings], [&best_string](const string& s)
      {
        best_string = s; // this should fail
      }
    );
    return 0;
}
share|improve this question
shouldn't your lambda look like: [&, &best_string](string const s) { ...}? – erjot Sep 25 '10 at 7:03
1  
really inconsistent capture. "const &" can be very useful when you have large const object which should be accessed but not modified in lambda function – sergdev Mar 30 '12 at 9:44

3 Answers

up vote 21 down vote accepted

const isn't in the grammar for captures as of n3092:

capture:
  identifier
  & identifier
  this

The text only mention capture-by-copy and capture-by-reference and doesn't mention any sort of const-ness.

Feels like an oversight to me, but I haven't followed the standardization process very closely.

share|improve this answer
I just tracked a bug back to a variable being modified from the capture that was mutable, but should have been const. Or more correctly, if the capture variable was const, the compiler would have enforced the correct behavior on the programmer. It'd be nice if the syntax supported [&mutableVar, const &constVar]. – Sean Feb 8 at 10:04

I guess if you're not using the variable as a parameter of the functor, then you should use the access level of the current function. If you think you shouldn't, then separate your lambda from this function, it's not part of it.

Anyway, you can easily achieve the same thing that you want by using another const reference instead :

#include <cstdlib>
#include <vector>
#include <string>
#include <algorithm>
using namespace std;

int main()
{
    string strings[] = 
    {
        "hello",
        "world"
    };
    static const size_t num_strings = sizeof(strings)/sizeof(strings[0]);

    string best_string = "foo";
    const string& string_processed = best_string;

    for_each( &strings[0], &strings[num_strings], [&string_processed]  (const string& s)  -> void 
    {
        string_processed = s;    // this should fail
    }
    );
    return 0;
}

But that's the same as assuming that your lambda have to be isolated from the current function, making it a non-lambda.

share|improve this answer
1  
The capture clause still mentions best_string only. Apart from that, GCC 4.5 "successfully rejects" the code like intended. – sellibitze Sep 22 '10 at 22:15
Yes, this would give me the results I was trying to achieve on a technical level. Ultimately however, the answer to my original question seems to be "no." – John Dibling Sep 23 '10 at 0:13
Why would that make it a "non-lambda"? – Roger Pate Sep 23 '10 at 8:18
Because the nature of a lambda is that it's context-dependant. If you don't need a specific context then it's just a quick way to make a functor. If the functor should be context-independant, make it a real functor. – Klaim Sep 23 '10 at 8:44
Note that there is std::begin/end which also works for raw arrays and makes it consistent and more readable to get the iterators for (almost?) any type of sequence. Also, there now is the range-based for loop: for(auto variable : sequence) – leemes Apr 13 at 15:59

Great question. Especially interesting considering that they added the 'mutable' keyword to handle non-const capture-by-value, but forgot (or decided it isn't important) to include const capture-by-reference.

I also find it interesting that 'mutable' is a (lambda)function attribute instead of a capture attribute, and yet it works differently than that const function attribute...

I suspect these are oversights that will come back to haunt us.

share|improve this answer
Let's hope it will be in C++1y... There are other oversights, such as a missing make_unique while there is a make_shared for pointer construction. – leemes Apr 13 at 15:54
@leemes that one was caught early and will be fixed for sure. The lambda changes.. well there are a lot of them :) not sure what the summary is yet. – mmocny Apr 19 at 14:17

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.