崔毅東 C++程序設計入門(下) 第10單元:月映千江未減明 – 模板 筆記

第01節:初識模板 第02節:函數模板 #include <iostream> using namespace std; template<class T> T maxValue(T x, T y) { if (x > y) return x; else return y; } int main() { cout << "Maximum between 1 and
相關文章
相關標籤/搜索