473,625 Members | 2,733 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

template class problem

Hi All,

Not sure if this is a c++ issue or a compiler issue.

I have the following in a class:

template<class T>
bool Utility::getInp ut(T& i, T low, T up){
bool result = false;
if(cin >i){
if((i >= low)&&(i <= up)){
result = true;
}
} else {
cin.clear();
cin.ignore(1000 , '\n');
}
return result;
}

in another file and class I have :

Utility utility;
utility.getInpu t(sal, 0.0, 999999.99);
utility.getInpu t(sid, 0, 999999);

Now, if I put all this in one file it compiles no worries. But, if I compile
it as is i get an error from the linker:

[linker error] Undefined reference to 'bool
Utility::getInp ut<double>(doub le&, double, double)'

Why if the linker can't find the reference to 'bool
Utility::getInp ut<double>(doub le&, double, double)' does it not complain
about the (int&, int, int) reference that comes before it in the code? How
can I resolve the error? The only linker errors I've had before have been
related to not including files in the compile command, but this is something
else....

Thanks for your help.

Regards

Michael
Mar 28 '07 #1
3 2114
On Mar 28, 12:51 pm, "michael" <s...@begone.ne twrote:
Hi All,

Not sure if this is a c++ issue or a compiler issue.

I have the following in a class:

template<class T>
bool Utility::getInp ut(T& i, T low, T up){
bool result = false;
if(cin >i){
if((i >= low)&&(i <= up)){
result = true;
}
} else {
cin.clear();
cin.ignore(1000 , '\n');
}
return result;

}

in another file and class I have :

Utility utility;
utility.getInpu t(sal, 0.0, 999999.99);
utility.getInpu t(sid, 0, 999999);

Now, if I put all this in one file it compiles no worries. But, if I compile
it as is i get an error from the linker:

[linker error] Undefined reference to 'bool
Utility::getInp ut<double>(doub le&, double, double)'

Why if the linker can't find the reference to 'bool
Utility::getInp ut<double>(doub le&, double, double)' does it not complain
about the (int&, int, int) reference that comes before it in the code? How
can I resolve the error? The only linker errors I've had before have been
related to not including files in the compile command, but this is something
else....

Thanks for your help.

Regards

Michael
can you post a minimal testcase that compiles but does not link to
demonstrate your problem?
m.

Mar 28 '07 #2

michael schrieb:
Hi All,

Not sure if this is a c++ issue or a compiler issue.

I have the following in a class:

template<class T>
bool Utility::getInp ut(T& i, T low, T up){
bool result = false;
if(cin >i){
if((i >= low)&&(i <= up)){
result = true;
}
} else {
cin.clear();
cin.ignore(1000 , '\n');
}
return result;
}

in another file and class I have :

Utility utility;
utility.getInpu t(sal, 0.0, 999999.99);
utility.getInpu t(sid, 0, 999999);

Now, if I put all this in one file it compiles no worries. But, if I compile
it as is i get an error from the linker:

[linker error] Undefined reference to 'bool
Utility::getInp ut<double>(doub le&, double, double)'

Why if the linker can't find the reference to 'bool
Utility::getInp ut<double>(doub le&, double, double)' does it not complain
about the (int&, int, int) reference that comes before it in the code? How
can I resolve the error? The only linker errors I've had before have been
related to not including files in the compile command, but this is something
else....

Thanks for your help.

Regards

Michael
Is the definition and implementation of this function inside the same
header? You have to put the definition into the same header or into
one that is included by this header.

Mar 28 '07 #3
On Mar 28, 2:51 pm, "michael" <s...@begone.ne twrote:
Hi All,

Not sure if this is a c++ issue or a compiler issue.

I have the following in a class:

template<class T>
bool Utility::getInp ut(T& i, T low, T up){
bool result = false;
if(cin >i){
if((i >= low)&&(i <= up)){
result = true;
}
} else {
cin.clear();
cin.ignore(1000 , '\n');
}
return result;

}

in another file and class I have :

Utility utility;
utility.getInpu t(sal, 0.0, 999999.99);
utility.getInpu t(sid, 0, 999999);

Now, if I put all this in one file it compiles no worries. But, if I compile
it as is i get an error from the linker:

[linker error] Undefined reference to 'bool
Utility::getInp ut<double>(doub le&, double, double)'

Why if the linker can't find the reference to 'bool
Utility::getInp ut<double>(doub le&, double, double)' does it not complain
about the (int&, int, int) reference that comes before it in the code? How
can I resolve the error? The only linker errors I've had before have been
related to not including files in the compile command, but this is something
else....

Thanks for your help.

Regards

Michael
The problem is not in the code.You seem to not know how to device
modular (multi-file projects) programming with C++ .Read the
documentation for your compiler.
[linker error] Undefined reference to 'bool
Utility::getInp ut<double>(doub le&, double, double)'
this means that you have refered to(called/used) an
identifier(func tion in this context) that the linker can not find in
any file.

Mar 28 '07 #4

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

6
3344
by: Patrick Kowalzick | last post by:
Dear all, I have a question about default template parameters. I want to have a second template parameter which as a default parameter, but depends on the first one (see below). Is something like that possible? Some workaround? Thank you, Patrick
4
3912
by: Sebastian Faust | last post by:
Hi, I have 4 questions related to templates. I wanna do something like the following: template<typename T> class Template { public: Template_Test<T>()
6
2329
by: Adam Parkin | last post by:
Hello, all I'm having a problem with friend functions in a templatized Queue class I'm writing using linked lists. The problem is that I can't get the friend function to be able to access private data from the class. Here's the gist of the code: template <class T> struct NodeType { T data; NodeType<T> * link;
7
2471
by: Drew McCormack | last post by:
I have a C++ template class which contains a static variable whose construction registers the class with a map. Something like this: template <typename T> class M { static Registrar<M> registrar; }; The constructor of Registrar does the registering when it is initialized.
0
1354
by: Leslaw Bieniasz | last post by:
Cracow, 16.09.2004 Hi, I have a problem with compiling the following construction involving cross-calls of class template methods, with additional inheritance. I want to have three class templates: ------------------------------------------ in file "Model.h":
2
2757
by: Siegfried Weiss | last post by:
Hi guys, i give up finding a solution by reading or by trial & error. Hope, YOU can help me! (Sorry for my rather long posting.) Stroustrup says, that templates could be declared with - type parameter, e.g. template<class T> - parameters with *simple* types like int, e.g. template<int size> - template parameter, e.g. template< template<class> class A > the latter beeing a type specifier, not an instance of A.
3
3933
by: Chris | last post by:
I am having a very strange problem involving virtual functions in template classes. First of all, here is an extremely simplified structure of the two classes I am having problems with. template<class Type> class base { public: base& operator/=(const base&); Type *image;
19
7919
by: aaragon | last post by:
Hi everyone. A very simple question. I would like to know what is better in terms of performance. I want to use a simple function to obtain the minimum of two values. One way could be using a macro: #define min(a,b) ((a<b)?a:b) I thought that another way could be to use a template function: template <class T> T min<T a, T b>
3
3748
by: Hamilton Woods | last post by:
Diehards, I developed a template matrix class back around 1992 using Borland C++ 4.5 (ancestor of C++ Builder) and haven't touched it until a few days ago. I pulled it from the freezer and thawed it out. I built a console app using Microsoft Visual C++ 6 (VC++) and it worked great. Only one line in the header file had to be commented out. I built a console app using Borland C++ Builder 5. The linker complained of references to...
4
1727
by: danilo.turina | last post by:
Hi all, today I encountered a problem that I'm only able to solve by using reinterpret_cast (and I'd like to avoid it). This was my code until yesterday (omitting includes, "using namespace" and the like): ----------------------------------------- // ABC Table struct Table {
0
8253
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
8692
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
1
8354
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
7182
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
0
5570
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
0
4089
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
0
4192
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
2621
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system
1
1802
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.