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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 7, 20262026-06-07T19:36:37+00:00 2026-06-07T19:36:37+00:00

Possible Duplicate: Why do I get “unresolved external symbol” errors when using templates? I

  • 0

Possible Duplicate:
Why do I get “unresolved external symbol” errors when using templates?

I am using templates in my code while there is always an error LNK2019. Here is part of my code:

Method.h

template<typename type>
void Method(Model<type>* sys);

Method.cpp

template<typename type>
void Method(Model<type>* sys){ blablabla;}

Model.h

template<typename type>
class Model{ blablabla;}

class Model1:public Model<double>{ blablabla;}

Main.cpp

Model<double> *sys=new Model1();
Method(sys);

However, there always shows an error LNK2019: unresolved external symbol “void __cdec1 Method(class Model*)” referenced in function_main. Anyone knows where I am going wrong? Thanks a lot!

  • 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-07T19:36:40+00:00Added an answer on June 7, 2026 at 7:36 pm

    Templates should be implemented in the header.

    Method.h

    template<typename type>
    void Method(Model<type>* sys){ /*Your code here*/ };
    

    See also: https://stackoverflow.com/a/495056/868546

    From Mark Ransom:

    In the .cpp file, the compiler can’t guess what the template parameter will be when you use the function in other files, so it doesn’t generate any actual code. The linker notices the lack of code and complains.

    The usual way is to define the entire function body in the header, much as an inline function, so the compiler can emit the code when it sees the function being used with the template parameter filled in.

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

Sidebar

Related Questions

Possible Duplicate: Get variable name. javascript “reflection” Is there a way to know the
Possible Duplicate: Is there an easy way in .NET to get “st”, “nd”, “rd”
Possible Duplicate: Install xCode 3.2.3 w/ iPhone SDK 4, get “Base SDK missing”, can't
Possible Duplicate: “Warning: mysql_fetch_array() expects parameter 1 to be resource, boolean given” error while
Possible Duplicate: “using” keyword in java I'm transitioning from C# to java, so please
Possible Duplicate: “BigInt” in C? Hey there! I'm calculating the Fibonacci numbers in C
Possible Duplicate: jQuery Ajax always returns “undefined”? I'm trying to come up with a
Possible Duplicate: Is there any wisdom behind “and”, “or” operators in Ruby? Ruby logical
Possible Duplicate: Allen Holub wrote “You should never use get/set functions”, is he correct?
Possible Duplicate: Getting the “diff” between two arrays in C#? Is there a better

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.