C++學習——模板與異常處理

模板 函數模板 template<class T> mindt(T x,T y) { }; mindt(1,2); mindt(0.1,0.2); 類模板 template<class T> class test{ T data[100]; .... }; test <int> dt1; test <double> dt2; 異常處理 try{      if(a) throw "error1";
相關文章
相關標籤/搜索