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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 17, 20262026-05-17T23:00:33+00:00 2026-05-17T23:00:33+00:00

template<typename Type> class List { public: List(void); ~List(void); … } which inherited by template<typename

  • 0
template<typename Type>
class List
{
public:
    List(void);
    ~List(void);
...
}

which inherited by

template<typename Type>
class LinkedList : public List<Type>
{
public:
    LinkedList(void);
    ~LinkedList(void);
...
}

but when I

List<int>* list = new LinkedList<int>();

there comes
error LNK2019: unresolved external symbol "public: __thiscall LinkedList<int>::LinkedList<int>(void)" (??0?$LinkedList@H@@QAE@XZ) referenced in function _wmain

I know that for template, the type is determined when compiling, I feel it should be ok to determine typename Type when compiling and then determine the derived class type at runtime. Is it possible to use polymorphism with template class in this way?

////////////////////////////////////////////////////////////////////////////////

Thank hkaiser and Chubsdad, it is the linking problem.
I defined the constructor in the cpp file, but somehow the linker cannot detect it. And I tried to move it to the header file, it worked, but I don’t like that.
It seems to be ok if I define the functions in cpp with a resolved type, like:

LinkedList<int>::LinkedList(void)
    :List<int>()
{
    mHead = new Node<int>(0);
}

instead of:

template<typename Type>
LinkedList<Type>::LinkedList(void)
    :List<Type>()
{
    mHead = new Node<Type>(0);
}

But what’s the difference? Why it becomes invisible with the template defination while visible with a resolved one? Is it possible to define template member functions in cpp?

  • 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-17T23:00:34+00:00Added an answer on May 17, 2026 at 11:00 pm

    The error is generated by the linker because you did not define the constructor for the LinkedList class. Or it is not visible to the compiler at the point where you use the type LinkedList<int> as shown above.

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

Sidebar

Related Questions

I have this snippet of code: template<typename... Args> class function_helper<void(Args...)>{ public: typedef void(*generic_function)(Args...); static
There is a declaration of template class with implicit parameters: List.h template <typename Item,
template<typename T> class vec3 { public: typename T type_t; T x; T y; T
If I have a template class, like so: template<typename T> class Type { /*
My code looks something like: template <typename type> void deserialize_element(type* result) { //... if
template <typename vec1, typename vec2> class fakevector { public: /* Do something */ };
#include <map> #include <list> template < typename K, typename V> class LruCache { private:
I have a class like this: template<class T> class AdjacencyList { public: void delete_node(const
Given the following piece of code: template<typename T> class MyContainer { typedef T value_type;
Currently, I have some code as follows template<typename Type> Type* getValue(std::string name, bool tryUseGetter

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.