Generic Classes in C

0 votes

Generic Classes was the topic I was reading. I at one point became immobile. 

Here is the relevant code:

template <class StackType> class stack
{
    StackType stck[10];
    int tos;
public:
    stack() {tos=0;}
    void push(StackType ob);
    StackType pop();
};

My question is that in template <class StackType> class stack, there are two classes made (StackType and stack)?

I mean how does the compiler treat this as like making stack a nested class of StackType or something else?

Aug 23, 2022 in C++ by Nicholas
• 7,760 points

edited Mar 4 43 views

No answer to this question. Be the first to respond.

Your answer

Your name to display (optional):
Privacy: Your email address will only be used for sending these notifications.
webinar REGISTER FOR FREE WEBINAR X
REGISTER NOW
webinar_success Thank you for registering Join Edureka Meetup community for 100+ Free Webinars each month JOIN MEETUP GROUP