舉例如下
#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; }
typename 用 class 替代也可以。
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...
沒有留言:
張貼留言