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++双向链表习题讲解
推荐阅读
-
python中使用sys模板和logging模块获取行号和函数名的方法
-
Python中的高级函数map/reduce使用实例
-
使用python绘制二元函数图像的实例
-
Go html/template 模板的使用实例详解
-
C++类的相关问题、构造函数与析构函数、复制构造函数实例讲解
-
smarty模板引擎中内建函数if、elseif和else的使用方法
-
smarty模板引擎使用内建函数foreach循环取出所有数组值的方法
-
OpenCV中的新函数connectedComponentsWithStats使用(python和c++实例)
-
实例讲解使用Win10计算器计算反三角函数的方法
-
C++中的c_str()函数怎么使用?