Just finding my way around templates so was trying out a few stuff.
Let me know what I am doing wrong here.
I am trying to overload a inherited templates virtual method.
// class templates
#include <iostream>
using namespace std;
template <class T, class A>
class mypair {
T a, b;
public:
mypair (T first, T second)
{a=first; b=second;}
virtual A getmax ();
};
template <class T, class A>
A mypair< T, A>::getmax ()
{
A retval;
retval = a>b? a : b;
return retval;
}
template <class T, class A>
class next : public mypair <T, A> {
A getmax ()
{
cout <<" WHOO HOO";
}
};
int main () {
mypair <double,float> myobject(100.25, 75.77);
next<double,float> newobject(100.25, 75.77);
cout << myobject.getmax();
return 0;
}
`
This gives the error :
function.cpp: In function ‘int main()’:
function.cpp:35: error: no matching function for call to ‘next<double, float>::next(double, double)’
function.cpp:25: note: candidates are: next<double, float>::next()
function.cpp:25: note: next<double, float>::next(const next<double, float>&)
If this isnt the right way to proceed, some info on template inheritance would be great
The
nextclass does not automatically inherit the constructors from its parent class. You have to define any constructors explicitly. This applies to all derived classes, whether template and virtual functions are involved or not.If you want to define a constructor from
nextthat takes twoTs and forwards them to the correspondingmypairconstructor, you would do it like this:Again, this is generally applicable even without templates involved.