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

The Archive Base Latest Questions

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

main.o: In function `main’: main.cpp:(.text+0x2f): undefined reference to `Foo<int>::display(int)’ collect2: ld returned 1 exit

  • 0
main.o: In function `main':
main.cpp:(.text+0x2f): undefined reference to `Foo<int>::display(int)'
collect2: ld returned 1 exit status

caused by

g++ -c *.cpp && g++ *.o -o foo

with foo.hpp:

#ifndef FOO_H_
#define FOO_H_

template<typename T>
class Foo {
  private:
    T ft_;
  public:
    Foo(const T & ft) : ft_(ft) { }
    Foo display(T x);
};

#endif

foo.cpp:

#include "foo.hpp"
#include<iostream>
using namespace std;

template<typename T>
Foo<T> Foo<T>::display(T x) {
  // do some stuff - not too relevant
  cout << "[" << x << "]";
  Foo<T> res(x);
  return res;
}

and main.cpp:

#include<iostream>
#include "foo.hpp"
using namespace std;

int main() {
  Foo<int> f(42);
  Foo<int> g = f.display(39);
  return 0;
}

Why?!

P. S. Works with inlined function definitions. Troubles come whenever declaration and definition of a function is split into two files…

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

    In C++ you need to put the definition of templated methods and functions into the header file.

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

Sidebar

Related Questions

main function: int main() { if((ban_file = open_file(banned_ips.txt)) == NULL) goto exit; ban_lst =
I have main.cpp (including main function) and func1.cpp, and I want to link these
Main Function: my %hash = {'inner1'=>{'foo'=>5}, 'inner2'=>{'bar'=>6}}; $object->State(0, %AMSValues); Sent to: sub State {
I have a main function, int main (int argc, char **argv) {} I'm supposed
Here is my main function: int main(int argc, char **argv) { LoadFile(); Node *temp;
I have a main function in A.cpp which has the following relevant two lines
I have this array declared inside my main() function: int VISITED[9][9]={{0,0,0,0,0,0,0,0,0}, {0,0,0,0,0,0,0,0,0}, {0,0,0,0,0,0,0,0,0}, {0,0,0,0,0,0,0,0,0},
What really are the valid signatures for main function in C? I know: int
I run a $ myprogram.exe which main function signature is int main(int argc, char
If I have a main function like this: int main(int argc, char **argv) {

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.