반응형
캡처
-
[C++] lambda 함수 기본부터카테고리 없음 2022. 11. 16. 14:25
In C++11 and later, a lambda expression—often called a lambda—is a convenient way of defining an anonymous function object (a closure) right at the location where it's invoked or passed as an argument to a function. MSDN-Lambda expressions in C++ 람다 함수는 기존 클로저(Closure)의 역할을 좀 더 쉽게 구현하게끔 하기 위하여 설계되었으며, C+11에서 처음 제시되었습니다. 여기서 클로저란 함수처럼 호출될 수 있는 이름 없는 객체를 일반적으로 일컫는 용어입니다. 클로저의 간단한 예시를 들어보자면, 더보기 st..