Can element types be the base class?

P

PengYu.UT

Hi,

I'm wondering if there is any way to use element types as base
classes. Or it is not possible at all?

struct A : public int {
};

Thanks,
Peng
 
K

Kai-Uwe Bux

Hi,

I'm wondering if there is any way to use element types as base
classes. Or it is not possible at all?

struct A : public int {
};

It's not possible.

You could provide a wrapper template

template < typename T >
class make_base {
...
};

and then do:

struct A : public make_base<int> {
};

But whatever you are trying to accomplish, this probably won't help.


On a related note: what are you trying to accomplish, anyway?


Best

Kai-Uwe Bux
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

No members online now.

Forum statistics

Threads
473,755
Messages
2,569,536
Members
45,015
Latest member
AmbrosePal

Latest Threads

Top