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

  • SEARCH
  • Home
  • 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 3393966
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 18, 20262026-05-18T04:06:50+00:00 2026-05-18T04:06:50+00:00

I wondering if something similar to this is possible. Basically, I have a templated

  • 0

I wondering if something similar to this is possible. Basically, I have a templated class that occasionally takes objects of templated classes. I would like to specialize it (or just a member function)for a specific templated class, but the ‘generic’ form of that class.

template<typename T, typename S>
class SomeRandomClass
{
    //put something here
};

template<typename T>
class MyTemplateClass
{
    void DoSomething(T & t) {
       //...something
    }
};

template<>
void MyTemplateClass< SomeRandomClass<???> >::DoSomething(SomeRandomClass<???> & t)
{
    //something specialized happens here
}

Replacing the question marks with appropriate types (double, etc) works, but I would like it to remain generic. I don’t know what to put there, as any types wouldn’t have been defined. I’ve looked around, and learned about template template parameters, and tried various combinations to no avail. Thanks for the help!

  • 1 1 Answer
  • 3 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-18T04:06:50+00:00Added an answer on May 18, 2026 at 4:06 am

    It’s possible to specialize the class like this

    template <>
    template <typename T,typename S>
    class MyTemplateClass <SomeRandomClass<T,S> >
    {
        void DoSomething(SomeRandomClass<T,S>& t) { /* something */ }
    };
    

    It’s not possible to specialize just the member method, because the specialization is on the class as a whole, and you have to define a new class. You can, however, do

    template <>
    template <typename T,typename S>
    class MyTemplateClass <SomeRandomClass<T,S> >
    {
        void DoSomething(SomeRandomClass<T,S>& t);
    };
    
    template <>
    template <typename T,typename S>
    void MyTemplateClass<SomeRandomClass<T,S> >::DoSomething(SomeRandomClass<T,S>& t)
    {
        // something
    }
    

    to split up the declaration and definition.

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

Sidebar

Related Questions

I'm wondering if it's possible to have something similar to ActionScript 3's Dictionary object
My data access classes often have a method called loadDataToEntity or something similar. This
I'm wondering something. I have class Polygon , which composes a vector of Line
I was just wondering about something. I have a frame that loads pages and
I was wondering if something was possible to do in CSS. Basically i want
I have a query that looks something like this: select xmlelement(rootNode, (case when XH.ID
Wondering if this is possible, I have a java applet which I am embedding
I'm wondering whether something like this is possible (and relatively easy to do), and
I was wondering if it is possible, using reflection, or something similar to invoke
I was wondering if there is a tool / framework or something similar that

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.