8
const 참조로 람다 캡처?
람다 식에서 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 …