前端之家收集整理的这篇文章主要介绍了
c – 正常功能和模板功能之间的优先级,
前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
在下面的
代码中,main
函数使用普通
函数而不是Template
函数.
#include <iostream>
using namespace std;
template <class T>
void num(T t){cout<<"T : "<<t;}
void num(int a){cout<<"wT : "<<a;}
int main()
{
num(5);
return 0;
}
这背后可能的原因是什么?
原文链接:https://www.f2er.com/c/111632.html