Чи можливо зафіксувати через посилання const в лямбдаському виразі?
Я хочу, щоб завдання, позначене нижче, не вдалося, наприклад:
#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;
}
Оновлення: Оскільки це старе питання, можливо, було б корисно оновити його, якщо в С ++ 14 є засоби, які допоможуть у цьому. Чи дозволяють розширення в C ++ 14 нам захоплювати об'єкт, що не містить const, за допомогою посилання const? ( Серпень 2015 р. )
[&, &best_string](string const s) { ...}
:?