Two paramether class template | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

Two paramether class template

#include <iostream> using namespace std; template <class T> class Pair { private: T first, second; public: Pair (T a, T b): first(a), second(b) { } T bigger(); }; template <class T> T Pair<T>::bigger() { return (first>second ? first : second); } int main() { Pair <double> obj(23.43, 5.68); cout << obj.bigger(); return 0; } how can i make this code with two template. one int and the other double

6th Feb 2017, 8:02 PM
Yusuf Bilgen
3 Answers
+ 1
@Yusuf, since you declared only 1 template parameter you cannot instantiate the template with 2 arguments like this: Pair <double, int> obj(23.43, 5); cout << obj.bigger(); But you can make use of C++'s implicit casting rules - an int would implicitly cast to a double, so the following will work: Pair <double> obj(23.43, 5); //5 is an int cout << obj.bigger();
7th Feb 2017, 6:44 AM
Ettienne Gilbert
Ettienne Gilbert - avatar
0
You just create a different instance of your template with an int parameter: int main() { Pair <double> obj(23.43, 5.68); cout << obj.bigger(); Pair <int> iobj(22, 8); cout << iobj.bigger(); return 0; }
6th Feb 2017, 10:35 PM
Ettienne Gilbert
Ettienne Gilbert - avatar
0
i mean that. one of two parameter will be double. and the other parameter will be integer at the same time Obj (double,int)
6th Feb 2017, 10:46 PM
Yusuf Bilgen