C ++程序中的模板专业化?
在本教程中,我们将讨论一个程序,以了解C++中的模板专业化。
诸如此类的标准函数sort()可用于任何数据类型,并且它们的行为相同。但是,如果您想为特定的数据类型(甚至是用户定义的)设置函数的特殊行为,我们可以使用模板专门化。
示例
#include <iostream>
using namespace std;
template <class T>
void fun(T a) {
cout << "The main template fun(): " << a << endl;
}
template<>
void fun(int a) {
cout << "Specialized Template for int type: " << a << endl;
}
int main(){
fun<char>('a');
fun<int>(10);
fun<float>(10.14);
return 0;
}输出结果
The main template fun(): a Specialized Template for int type: 10 The main template fun(): 10.14
热门推荐
6 保研的祝福语简短
10 年轻20岁祝福语简短
11 朋友结婚祝福语信息简短
12 女孩婚礼贺卡祝福语简短
13 30段点歌简短祝福语
14 虎年春节祝福语图文简短
15 写给后妈祝福语大全简短
16 简短回复生日祝福语
17 校长送毕业祝福语简短
18 毕业立体贺卡祝福语简短