C++ 快速導覽 - 函數樣版

函數樣版 (function template) 可定義適用多種型態 (type) 的函數 (function) ,而不需要多載 (overload) 適用的各種情況。



舉例如下
#include <iostream>

template <typename T1, typename T2> 
T1 do_something(const T1 &a, const T2 &b) {
    return a + b;
}

int main(void) {
    std::cout << do_something(1, 10) << std::endl;
    std::cout << do_something(1, 10.5) << std::endl;
    std::cout << do_something(2.5, 6.32) << std::endl;

    return 0;
}

/* 《程式語言教學誌》的範例程式
    http://pydoing.blogspot.com/
    檔名:tempdemo01.cpp
    功能:示範 C++ 程式
    作者:張凱慶
    時間:西元 2013 年 1 月 */


第 3 行定義函數樣版要先用關鍵字 (keyword) template 宣告是個樣版定義,然後是角括號圍起來的樣版參數列 (parameter list) ,使用 typename 宣告所用的型態名稱,底下函數的參數 (parameter) 要用 const 參考 (reference)
template <typename T1, typename T2> 
T1 do_something(const T1 &a, const T2 &b) {
    return a + b;
}


typenameclass 替代也可以。


do_something() 接受兩個不同型態的參數,然後回傳第一個型態的相加值。編譯執行結果如下



中英文術語對照
函數樣版function template
型態type
函數function
多載overload
關鍵字keyword
參數列parameter list
參數parameter
參考reference


您可以繼續參考
樣版


相關目錄
回 C++ 快速導覽
回 C++ 教材
回首頁


參考資料
C++ reference
cplusplus.com
Cprogramming.com C++ Tutorial

C++ Primer, Fourth Edition, Stanley B. Lippman...

沒有留言: