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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 18, 20262026-05-18T20:43:59+00:00 2026-05-18T20:43:59+00:00

I have a class to evaluate set algebra but wish to template it. At

  • 0

I have a class to evaluate set algebra but wish to template it.

At the minute it looks a bit like this

set.h:

template<typename T>
  class SetEvaluation
  {
  public:
    SetEvaluation<T>();

    std::set<T>
    evaluate(std::string in_expression);
   }

set.cpp

template<typename T>
   std::set<T>
   SetEvaluation<T>::evaluate(std::string expression)
   {
     std::set<T> result;
     etc etc...
   }

But i’m getting undefined reference errors when compiling.

Is it possible to declare the return type as std::set<T> and then pass std::string as the class template param.

There are no errors in the class but only when I try to instantiate SetEvaluation<std::string>

Can anyone shed light on this problem?

thanks

  • 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-18T20:44:00+00:00Added an answer on May 18, 2026 at 8:44 pm

    Template classes and functions are a bit special and need to be defined in the header file. Then that header file needs to be #included wherever you want to use that template class. If you try to define the template functions in a cpp file the linker and try to call that function from another cpp file, the linker won’t be able to resolve the reference because the compiler didn’t know what to use for the parameter T when it compiled the file with the template definition in it. The best way to work around this is to 1) define the function in the header file and 2) #include it wherever needed. There’s further information about this issue on the C++ faq.

    Trivia

    There is another way to get around this using the Comeau C++ compiler because it supports the ‘export’ keyword, however that keyword is being deprecated in C++0X.

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

Sidebar

Related Questions

I have an entity class like this (with lots of stuff missing): class Parent
I have a logicAND class, the constructor is supposed to evaluate the AND operation
This is a simplified version of the original problem. I have a class called
I have a class that implements IAuthorizationPolicy. I set up a custom Principal object
I have a class public class Person { public int PersonId { get; set;
In a derived class I have a function called evaluate() (it's a virtual in
I have a class that solves an equation using an approximation, evaluates the approximation
I have class A, which exposes an event. an object of class B subscribed
I have class A: public B { ...} vector<A*> v; I want to do
I have class Fred { public: void inspect() const {}; void modify(){}; }; int

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.