Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
コード サンプルのこの記事では、私にはなじみのない C++ コード構造に遭遇しました。
[&]() {/* code here*/}
Java の無名関数または無名クラスのように見えます。この構造が何を意味するか知っている人はいますか?
これはラムダ関数 (別の関数内で定義できる無名関数) です。
ここでそれを説明するかなり良いSO投稿があります。 C++11 のラムダ式とは何ですか?
これはラムダ関数 (C++11) です。