C++中的模版總體可以分為兩大類:模版函數(shù)、模版類。本篇文章先寫模版函數(shù),接下來會介紹模版類。
定義:模版函數(shù)是通用的函數(shù)描述,也就是說它們使用通用類型來定義,其中的通用類型可用具體類型替換。
代碼實(shí)例:
#include <iostream>//模版函數(shù)的聲明template<typename T>void Swap(T& a,T& b);int main() { int i = 10; int j = 20; std::cout<<"i=" << i << "," << "j=" <<j; Swap(i,j);//生成 void Swap(int &,int&); std::cout<<"i=" << i << "," << "j=" <<j; double x = 11.5; double y = 19.5; std::cout<<"x=" << x << "," << "y=" <<y; Swap(x,y);//編譯器生成 void Swap(double &,double&); std::cout<<"x=" << x << "," << "y=" <<y; return 0; }//模版函數(shù)的定義template<typename T>void Swap(T& a,T& b) { T temp; temp = a; a = b; b = temp; }
延伸閱讀
學(xué)習(xí)是年輕人改變自己的最好方式