Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6364225
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 25, 20262026-05-25T00:08:13+00:00 2026-05-25T00:08:13+00:00

I need some way to achieve a reverse template alias. So I’d use a

  • 0

I need some way to achieve a “reverse template alias”. So I’d use a template typedef to select the correct class to use at compile time. I’d like to do the following:

typedef ClassA Temp<int>;
typedef ClassB Temp<char>;

ClassA and ClassB are not template classes, but I’d like to select the right class through the use of a template. So if a Temp< int > was needed it would actually use ClassA. Is anything like this even possible in C++? I tried the following but it didn’t work.

template<>
typedef ClassA Temp<int>;

template<>
typedef ClassB Temp<char>;

I got the following error in GCC

error: template declaration of ‘typedef’
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-25T00:08:13+00:00Added an answer on May 25, 2026 at 12:08 am

    No, typedef can’t define type templates, only types. The two closest things you can do are:

    template <typename T>
    struct Temp;
    
    template <>
    struct Temp<int> : ClassA {}
    
    template <>
    struct Temp<char> : ClassB {}
    

    so you write just Temp<int>, but it’s a derived class, not the class itself, or

    template <typename T>
    struct Temp;
    
    template <>
    struct Temp<int> { typedef ClassA Type; }
    
    template <>
    struct Temp<char> { typedef ClassB Type; }
    

    so you can get the ClassA and ClassB themselves, but you have to write Temp<int>::Type.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I need some way to add a class attribute to the output of the
I'm using freemarker to generate a freemarker template. But I need some way to
I need some advice please on the best way to achieve a particular outcome...
So, I need some way to implement an undirected network ( I think this
I need to find some way of displaying a drop-down menu that depending on
I need some feedback on what is the best way to do what I
I need to notify my application in some way whenever any file in the
I'm bumbling my way through creating a Silverlight 3 application. I need some high
I need to check in some fast way if there is any text nodes
I need a way to stash some data that is global to the browser.

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.