C++ 速查手冊

8.6 - Lambda 函數

Lambda 函數是 C++11 新增的函數形式,這是種匿名函數,也就是不需要函數識別字,簡單舉例如下

#include <iostream>
  
int main() {
    auto f = [](int i) {return i * i;};
    
    std::cout << f(11) << std::endl;
    std::cout << f(22) << std::endl;
    std::cout << f(16) << std::endl;
    
    return 0;
}

/* 《程式語言教學誌》的範例程式
   http://kaiching.org/
   檔名:u0806.cpp
   功能:示範 C++ 的函數
   作者:張凱慶*/

Lambda 函數用中括弧與小括弧組成,此例的 lambda 函數為簡化的形式,中括弧可放置作用域中的變數,而小括弧則放置 lambda 函數的參數

auto f = [](int i) {return i * i;};

因此接下來就是透過變數 f 使用這個匿名的 lambda 函數

std::cout << f(11) << std::endl;
std::cout << f(22) << std::endl;
std::cout << f(16) << std::endl;

編譯執行,結果如下

$ g++ u0806.cpp -std=c++0x
$ ./a.out
121
484
256
$

相關教學影片

上一頁 8.5 - 可變參數
回 C++ 速查手冊首頁
下一頁 8.7 - inline 函數
回 C++ 教材
回程式語言教材首頁