可以同时定义两个名字一样的函数,但参数类型不同。
void Print(int a)
{
cout<<"int "<<a<<endl;
}
void Print(char a)
{
cout<<"int "<<char<<endl;
}
...
调用时可以直接使用函数输出不同类型的值:
Print(12);
Print('s');
这称为函数重载,这种方式有个缺点就是当要输出很多类型时(如:float、double、string等),必须写多个函数。
有一种更简单的方法叫函数模板,只要是可以定义普通函数的地方都可以定义模板函数。
template <typename Type>
void Print(Type val)
{
cout<<val<<endl;
}
举个栗子:
#include <iostream>
#include <string>
using namespace std;
template <typename Sample>//模板函数,比函数重载要方便!
void output(Sample val)
{
cout<<"val:"<<val<<endl;
}
int main()
{
output("sss");
output(12.3);
return 0;
}