Avatar of LuckyLucks
LuckyLucks
 asked on

template class as a member

Hi

I get this error:

'MyClass' use of class template requires template argument list

My template class is as follows:

template <class T=int> class MyClass{
:
:
}

Another class has this template class as members.

#include "MyClass.h"
class B{
     private:
          MyClass a; //This line gives me the above mentioned error
    :
    public:
         B(MyClass in): a(in) {}
}

what am i doing wrong?

I wanted to do something like this:
MyClass<T>  a;


where the type of a i.e. the member  would be defined by what's passed in to the constructor. Is this possible?
 Can the type of a member be a template class, whose type parameter (T=int or float etc) be defined at compile time by what's passed in the constructor?
C++

Avatar of undefined
Last Comment
jkr

8/22/2022 - Mon
SOLUTION
Zoppo

THIS SOLUTION ONLY AVAILABLE TO MEMBERS.
View this solution by signing up for a free trial.
Members can start a 7-Day free trial and enjoy unlimited access to the platform.
See Pricing Options
Start Free Trial
GET A PERSONALIZED SOLUTION
Ask your own question & get feedback from real experts
Find out why thousands trust the EE community with their toughest problems.
SOLUTION
jkr

THIS SOLUTION ONLY AVAILABLE TO MEMBERS.
View this solution by signing up for a free trial.
Members can start a 7-Day free trial and enjoy unlimited access to the platform.
See Pricing Options
Start Free Trial
GET A PERSONALIZED SOLUTION
Ask your own question & get feedback from real experts
Find out why thousands trust the EE community with their toughest problems.
SOLUTION
Zoppo

THIS SOLUTION ONLY AVAILABLE TO MEMBERS.
View this solution by signing up for a free trial.
Members can start a 7-Day free trial and enjoy unlimited access to the platform.
See Pricing Options
Start Free Trial
⚡ FREE TRIAL OFFER
Try out a week of full access for free.
Find out why thousands trust the EE community with their toughest problems.
ASKER CERTIFIED SOLUTION
jkr

THIS SOLUTION ONLY AVAILABLE TO MEMBERS.
View this solution by signing up for a free trial.
Members can start a 7-Day free trial and enjoy unlimited access to the platform.
See Pricing Options
Start Free Trial
⚡ FREE TRIAL OFFER
Try out a week of full access for free.
Find out why thousands trust the EE community with their toughest problems.
Experts Exchange has (a) saved my job multiple times, (b) saved me hours, days, and even weeks of work, and often (c) makes me look like a superhero! This place is MAGIC!
Walt Forbes