欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

C++ STL 模板函数的使用实例

程序员文章站 2022-03-26 17:57:18
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;  
}  

C++ STL 模板函数的使用实例