มันเป็นไปได้ที่จะจับโดยอ้างอิง 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;
}
อัปเดต:เนื่องจากเป็นคำถามเก่ามันอาจจะดีถ้าหากมีสิ่งอำนวยความสะดวกใน C ++ 14 เพื่อช่วยในเรื่องนี้ ส่วนขยายใน C ++ 14 อนุญาตให้เราจับภาพวัตถุที่ไม่ใช่ const โดยอ้างอิง const หรือไม่ ( สิงหาคม 2558 )
[&, &best_string](string const s) { ...}
?