How to write template class with two generic parameter in C++

1 Answer

0 votes
#include <iostream>
#include <cstring>

using std::cout;
using std::endl;

template <class T1, class T2> class Test {
	T1 i;
	T2 j;
public:
	Test(T1 _i, T2 _j)
	{
		i = _i; j = _j;
	}
	void print(void)
	{
		cout << i << " " << j << endl;
	}
};

int main(void)
{
	Test<double, long> o1(3.14, 99999);
	Test<char, char *> o2('z', "C++");

	o1.print();
	o2.print();
}



/*
run:

3.14 99999
z C++

*/

 



answered Mar 14, 2018 by avibootz

Related questions

1 answer 213 views
2 answers 256 views
1 answer 224 views
1 answer 181 views
1 answer 248 views
1 answer 173 views
...