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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 22, 20262026-05-22T00:37:51+00:00 2026-05-22T00:37:51+00:00

I am currently working in Ubuntu9.10 – c++. I need to define an generic

  • 0

I am currently working in Ubuntu9.10 – c++.
I need to define an generic object in a method. I have to define the method in .h file. How can I do it? I did the following:

file.h

class ana

{
//code
public:
template <class T>  bool method (T &Data);
};

file.cpp

//code

template <class T>
bool ana::method(T &Data)
{
//code
}

I’ve created the .a file.

In test.cpp:

//code
main()
{
    //code
    Ana* ann = new Ana();

    if (ann->method(*ann)){//code}
}

After compiling with g++ test.cpp -o test libfile.a I have the error: undefined reference to bool.... Why? Is there another way to create a generic object?

  • 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-22T00:37:51+00:00Added an answer on May 22, 2026 at 12:37 am

    Putting function definitions together with declarations (in the header files itself) definitely helps and is the way of choice. But, in case you want to separate the function definitions, have the following lines at the end of the .cpp file. Its called explicit instantiation.This will take care of linker errors. I tried some code, and this seems to work, based on what you have given:

    file.h:

    #ifndef __ANA_H__
    #define __ANA_H__
    
    template <class T>
    class ana {
    
      public: 
        bool method(T& data);
    };
    
    #endif
    

    file.cpp:

    #include <ana.h>
    #include <iostream>
    using namespace std;
    
    template <typename T>
    bool ana<T>::method(T& data) {
      cout << "Data = " << data << endl;
      if(data > 0) {
        return true;
      }
      return false;
    }
    
    //explicit instantiation for avoidance of g++ linker errors.
    template
    bool ana<int>::method(int& data);
    
    template
    bool ana<double>::method(double& data)
    

    One of the downsides of using this method is that these lines will have to be included for every data type that you want this function to support. So, now the method function will run ONLY for int and double. The specs for your code should be such that method is never called for data types other than the above.
    HTH,
    Sriram

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

Sidebar

Related Questions

On ubuntu I currently have haskell-platform 2011.2.0.1.2 installed, and I am currently working on
I'm currently working on a class that will create an x,y graph according to
I am currently running gdb version 6.7.1 on Ubuntu Linux, and working in a
Currently working in the deployment of an OFBiz based ERP, we've come to the
Currently working on a VBScript to automate some of the dirty PST ingestion work
Currently working on a site built in Django and i'm getting an issue when
Currently working with NSURLConnection. Found a great website showing important delegate methods coming with
I currently working on an issue tracker for my company to help them keep
Am currently working on an application that requires users to submit posts and comments
I`m currently working out the design for simple graphic editor, who support trivial operations

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.