Velocity Reviews

Velocity Reviews (http://www.velocityreviews.com/forums/index.php)
-   C++ (http://www.velocityreviews.com/forums/f39-c.html)
-   -   link error if template function is defined in non-header file (http://www.velocityreviews.com/forums/t267667-link-error-if-template-function-is-defined-in-non-header-file.html)

Chandra Shekhar Kumar 06-24-2003 04:19 AM

Re: link error if template function is defined in non-header file
 
coz, compiler can't see the definition of the function f.
so u shud include the definition of f in the header file, this is the
practice for all the template functions

Suzanne wrote:

> Hi++,
>
> I get a link error when I try to call a template function that is
> declared in a header file and defined in a non-header file. I do *not*
> get this link error if I define the template function directly in the
> header file, or if the change the function to non-template.
>
> For example...
> *** Why am I getting a link error for template function f() in the code
> below?
>
> Thanks!
> Suzanne
>
> -----------------------------------
> // File: Main.cpp
>
> #include "Templates.h"
>
> int main(int argc, char** argv) {
> f<int>(5); // <--link error here
> }
> -----------------------------------
> // File: Templates.h
>
> #ifndef TEMPLATES_H
> #define TEMPLATES_H
>
> #ifndef _STD_USING
> #define _STD_USING // Must be #define'd in order to include iostream.h.
> #endif // _STD_USING
>
> #include <iostream>
>
> template<class T>
> void f(T n);
>
> #endif // TEMPLATES_H
> -----------------------------------
> // File: Templates.cpp
>
> #include "Templates.h"
>
> template<class T>
> void f(T n) {
> std::cout << "I got an \"n\"!\n";
> }



Suzanne 06-24-2003 03:59 PM

link error if template function is defined in non-header file
 
Hi++,

I get a link error when I try to call a template function that is
declared in a header file and defined in a non-header file. I do *not*
get this link error if I define the template function directly in the
header file, or if the change the function to non-template.

For example...
*** Why am I getting a link error for template function f() in the code
below?

Thanks!
Suzanne

-----------------------------------
// File: Main.cpp

#include "Templates.h"

int main(int argc, char** argv) {
f<int>(5); // <--link error here
}
-----------------------------------
// File: Templates.h

#ifndef TEMPLATES_H
#define TEMPLATES_H

#ifndef _STD_USING
#define _STD_USING // Must be #define'd in order to include iostream.h.
#endif // _STD_USING

#include <iostream>

template<class T>
void f(T n);

#endif // TEMPLATES_H
-----------------------------------
// File: Templates.cpp

#include "Templates.h"

template<class T>
void f(T n) {
std::cout << "I got an \"n\"!\n";
}


Patrick Kowalzick 06-24-2003 04:12 PM

Re: link error if template function is defined in non-header file
 
Hi Suzanne,

Template functions are only created if you "use" them. Nothing is happening
if you do not create an instance of a special type. Anyway, how should this
be possible?
This is exactly the case when your compiler creates the object file of your
cpp. So you have an object file with nothing inside.

Patrick

"Suzanne" <suzanne_e_vogel@hotmail.com> wrote in message
news:3ef87563$1_1@news.unc.edu...
> Hi++,
>
> I get a link error when I try to call a template function that is
> declared in a header file and defined in a non-header file. I do *not*
> get this link error if I define the template function directly in the
> header file, or if the change the function to non-template.
>
> For example...
> *** Why am I getting a link error for template function f() in the code
> below?
>
> Thanks!
> Suzanne
>
> -----------------------------------
> // File: Main.cpp
>
> #include "Templates.h"
>
> int main(int argc, char** argv) {
> f<int>(5); // <--link error here
> }
> -----------------------------------
> // File: Templates.h
>
> #ifndef TEMPLATES_H
> #define TEMPLATES_H
>
> #ifndef _STD_USING
> #define _STD_USING // Must be #define'd in order to include iostream.h.
> #endif // _STD_USING
>
> #include <iostream>
>
> template<class T>
> void f(T n);
>
> #endif // TEMPLATES_H
> -----------------------------------
> // File: Templates.cpp
>
> #include "Templates.h"
>
> template<class T>
> void f(T n) {
> std::cout << "I got an \"n\"!\n";
> }
>




Victor Bazarov 06-24-2003 04:14 PM

Re: link error if template function is defined in non-header file
 
"Suzanne" <suzanne_e_vogel@hotmail.com> wrote...
> I get a link error when I try to call a template function that is
> declared in a header file and defined in a non-header file. I do *not*
> get this link error if I define the template function directly in the
> header file, or if the change the function to non-template.
>
> For example...
> *** Why am I getting a link error for template function f() in the code
> below?


Because the compiler doesn't get a chance to create the correct,
required, instantiation of the template if it doesn't see the body
of the function template when compiling the code that uses it.

Victor



Michiel Salters 06-25-2003 10:58 AM

Re: link error if template function is defined in non-header file
 
Suzanne <suzanne_e_vogel@hotmail.com> wrote in message news:<3ef87563$1_1@news.unc.edu>...
> Hi++,
>
> I get a link error when I try to call a template function that is
> declared in a header file and defined in a non-header file. I do *not*
> get this link error if I define the template function directly in the
> header file, or if the change the function to non-template.


Theoretically, because you didn't include the keyword 'export' in the
declaration. That tells the compiler to defer template instantiation
to the linker.

In practice, most linkers can't do this yet and you need the definition
inlined in your header.

HTH,
--
Michiel Salters

Corey Murtagh 06-25-2003 03:47 PM

Re: [OT gripe...] link error if template function is defined in non-headerfile
 
Chandra Shekhar Kumar wrote:

> coz, compiler can't see the definition of the function f.
> so u shud include the definition of f in the header file, this is the
> practice for all the template functions


I'm sorry if I seem like a real ass for saying this, but these
contractions are really getting up my nose for some reason. Is it
really that hard to type the word 'you' that you absolutely must reduce
it to 'u'? Same question for 'should' and 'shud'. Is your shift key
broken?

I don't know if this bugs anyone else. I've always thought of
programmers as being careful people who pay plenty of attention to case
and so on.

Ah hell, maybe you *did* learn English from an IRC channel. *shrug*

--
Corey Murtagh
The Electric Monk
"Quidquid latine dictum sit, altum viditur!"


Gavin Deane 06-26-2003 12:36 AM

Re: [OT gripe...] link error if template function is defined in non-header file
 
Corey Murtagh <emonk@slingshot.co.nz.no.uce> wrote in message news:<1056556018.991794@radsrv1.tranzpeer.net>...
> Chandra Shekhar Kumar wrote:
>
> > coz, compiler can't see the definition of the function f.
> > so u shud include the definition of f in the header file, this is the
> > practice for all the template functions

>
> I'm sorry if I seem like a real ass for saying this, but these
> contractions are really getting up my nose for some reason. Is it
> really that hard to type the word 'you' that you absolutely must reduce
> it to 'u'? Same question for 'should' and 'shud'. Is your shift key
> broken?
>
> I don't know if this bugs anyone else.


I'm in.


All times are GMT. The time now is 08:13 AM.

Powered by vBulletin®. Copyright ©2000 - 2013, vBulletin Solutions, Inc.
SEO by vBSEO ©2010, Crawlability, Inc.