会员
周边
众包
新闻
博问
闪存
赞助商
所有博客
当前博客
我的博客
我的园子
账号设置
简洁模式
...
退出登录
注册
登录
略加思索的河马
博客园
首页
新随笔
联系
订阅
管理
2016年5月7日
c++之模板
摘要: 1. 函数模板 普通函数 void Swap(int &, int &); 模板函数 template void Swap(T &, T &); 显示具体化,下面两个等价 template void Swap(int &, int &); template void Swap(int &, int &); 注意:具体化将覆盖模板函数,普通函数将覆盖具体化和模板函数。 ...
阅读全文
posted @ 2016-05-07 17:36 略加思索的河马
阅读(214)
评论(0)
推荐(0)
编辑
公告