先决条件:C++中的模板
创建模板时,可以指定多个类型。我们可以在类模板中使用多个通用数据类型。它们在模板中声明为逗号分隔的列表,如下所示:
句法:
template
class classname
{
...
...
};
// CPP program to illustrate
// Class template with multiple parameters
#include
using namespace std;
// Class template with two parameters
template
class Test
{
T1 a;
T2 b;
public:
Test(T1 x, T2 y)
{
a = x;
b = y;
}
void show()
{
cout << a << " and " << b << endl;
}
};
// Main Function
int main()
{
// instantiation with float and int type
Test test1 (1.23, 123);
// instantiation with float and char type
Test test2 (100, 'W');
test1.show();
test2.show();
return 0;
}
输出:
1.23 and 123
100 and W
代码说明:
- 在上面的程序中,Test构造函数有两个泛型类型的参数。
- 创建对象时,在尖括号<>内提到了参数的类型。
- 当参数不止一个时,它们之间用逗号分隔。
- 以下陈述
Test test1 (1.23, 123);
告诉编译器第一个参数的类型为float类型,另一个参数为int类型。
- 在对象创建期间,将调用构造函数,并通过模板参数接收值。
要从最佳影片策划和实践问题去学习,检查了C++基础课程为基础,以先进的C++和C++ STL课程基础加上STL。要完成从学习语言到DS Algo等的更多准备工作,请参阅“完整面试准备课程” 。