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 8885397
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 14, 20262026-06-14T21:18:07+00:00 2026-06-14T21:18:07+00:00

I am writing a class in which I want to create member function template

  • 0

I am writing a class in which I want to create member function template specialization like this

namespace aha
{
class Foo
{
public:
    template < typename T >
    T To() const
    {
        // some code here
    }
};
template <>
bool Foo::To < bool > () const
{
    // some other code here
}
}

gcc is giving the error:

Explicit instantiation of ‘To < bool >’ after instantiation

I would like to do it with template specialization of member functions only so that the users of my library would get the same function while converting Foo to different datatypes like

Foo obj;
bool b( obj.To < std::string > () );
int i( obj.To < int > () );
float f( obj.To < float > () );

and so on.

Please let me know what I am doing wrong in the code.

  • 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-06-14T21:18:08+00:00Added an answer on June 14, 2026 at 9:18 pm

    Explicit instantiation of ‘To < bool >’ after instantiation

    The above says it all: it gets specialized after the generic version of it has already been used.

    Function template specialization can be simulated with overloading, which is a more flexible mechanism (for example, there is no partial specialization for function templates, yet one can achieve the desired effect with overloading):

    template<class T> struct Type {}; // similar to boost::type<>
    
    class Foo
    {
        template<class T>
        T doTo(Type<T>) const; // the generic version
    
        bool doTo(Type<bool>) const; // an overload for bool only
        // add more overloads as you please
    
    public:
        template < typename T >
        T To() const {
            return this->doTo(Type<T>());
        }
    };
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I am writing a memory-managing template class in which I want to create a
I am writing a template class which takes a floating-point-like type (float, double, decimal,
I'm writing a class which shares several different features with std::function (or at least
I am writing unit for a class which looks like following using nunit and
I want to write a math vector template. I have a class which accepts
I want create a DataSet class which is basically a list of samples. But
I am trying to write a template like this. template <char c,typename Options, basic_string<class,class,class>
I'm writing my first Django app and want to create a header model which
I'm writing a class which I intend to use to create subroutines, constructor as
I have a template class which implements function: template<typename T> class Matrix { ...

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.