C++ STL 模板函数的使用实例
程序员文章站
2022-07-01 19:32:50
c++ stl 模板函数的使用实例
#include
#include
using namespace std;...
c++ stl 模板函数的使用实例
#include <iostream> #include <string> using namespace std; template <class t>void print(const t& var){ cout<<var<<endl; } int main() { string str("hello beijing!"); int a=10; float b=2.2; char c[]="nihao"; print(str); print(a); print(b); print(c); return 0; }