473,809 Members | 2,781 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 2123
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
3355
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
3918
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
2341
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
2482
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
1365
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
2765
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
3942
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
7944
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
3763
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
1739
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
9721
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
10639
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
10383
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
10120
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
0
9200
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...
1
7661
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
5550
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
5688
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
3
3015
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

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.