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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 18, 20262026-06-18T06:32:51+00:00 2026-06-18T06:32:51+00:00

I wonder whether it is possible to implement multiple function of a template class

  • 0

I wonder whether it is possible to implement multiple function of a template class without defining the template multiple times.

Declaration:

template <class T>
class Test{
    private:
    T field;
    public:
    Test(T value);
    T& get();
    void set(T value);
};

Implementation:

template <class T> Test<T>::Test(T value){ set(value); }
template <class T> T& Test<T>::get(){ return field; }
template <class T> void Test<T>::set(T value){ field = value; }

Copying template <class T> multiple times is somewhat error-prone. I wonder whether I can do something like this:

template <class T>{
Test<T>::Test(T value){ set(value); }
T& Test<T>::get(){ return field; }
void Test<T>::set(T value){ field = value; }
}

Any help would be appreciated.

  • 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-18T06:32:52+00:00Added an answer on June 18, 2026 at 6:32 am

    You can directly implement those methods in the class definition.

    Moreover, you don’t need to separate the declaration and implementation of the template class . It has no side effect to the compilation. Because the implementation is not the real implementation. A template class is not a class, it’s only a template that can be used to create a class. When you instantiate such a template class, e.g. YourTemplate, the compiler creates that new class. In order to create it, it has to see all the templated member functions (so that it can use the templates to create actual member functions such as YourTemplate::function1() ), and therefore these templated member functions must be in the header file, along with the template class body.

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

Sidebar

Related Questions

I wonder whether it would be possible to implement something similar to http://bit.ly/MEdfiq using
I'd like implement a pagination. So I just wonder whether it's possible to select
I wonder whether it's possible to access a method declared in a parent class,
I wonder, whether it is possible to create class-methods in VBA. By class-method I
I wonder whether it is possible to use Django in-built comments framework for other
I wonder whether I can manage fragments like Activity. I implemented tab function with
I wonder whether some template meta-programming facility allows one to assign unique integral identifiers
I wonder whether it is possible to debug a C++ program with Textmate, using
I wonder whether it is possible to have an ElementCollection of Embeddable inside another
Just wonder whether it's possible to get real-time notifications from a twitter account in

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.