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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 25, 20262026-05-25T22:26:03+00:00 2026-05-25T22:26:03+00:00

Possible Duplicate: Where to define C++ class member template function and functors that instantiate

  • 0

Possible Duplicate:
Where to define C++ class member template function and functors that instantiate it?
inclusion of header files in case of templates

I am using class templates. I have several methods in my my class and if I define them in the .cpp file I am getting the linker error

error LNK2019: unresolved external symbol

Do all methods in template classes need to be defined in the header file? It makes my code look yucky but if it’s the only way I am fine with it.

  • 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-25T22:26:04+00:00Added an answer on May 25, 2026 at 10:26 pm

    Do all methods in template classes need to be defined in the header file?

    Yes. But you can still factor out the parts that don’t rely on template arguments and put those in a regular modules as ordinary functions or as a mixin class:

    class NonTemplatedOpsMixin
    {
        int bar();  // defined elsewhere
    };
    
    template <typename T>
    class TemplatedStuff : private NonTemplatedOpsMixin
    {
        T foo(T &x) { x += bar(); }
    };
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Possible Duplicate: The written versions of the logical operators. I notice that C++ define
Possible Duplicate Why can't I have a non-integral static const member in a class?
Possible Duplicate: Why can templates only be implemented in the header file? Why should
Possible Duplicate: Best way to define private methods for a class in Objective-C Hi,
Possible Duplicate: Why should the implementation and the declaration of a template class be
Possible Duplicate: Use a variable to define a PHP function Is there a way
Possible Duplicate: Why can templates only be implemented in the header file? I've struggled
Possible Duplicate: Define a generic that implements the + operator I am recently working
Possible Duplicate: Is it possible to define enumalpha? Is there any equivalent of Java
Possible Duplicate: User control javascript I defined a JavaScript function inside a user control.

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.