Connecting Tech Pros Worldwide Forums | Help | Site Map

Template problem with visual studio.net

Vespasian
Guest
 
Posts: n/a
#1: Jul 22 '05
I am getting the follwoing errors,
1. temp error LNK2019: unresolved external symbol "public:
__thiscall Spice<int>::Spice<int>(void)" (??0?$Spice@H@@QAE@XZ)
referenced in function _main
2. temp fatal error LNK1120: 1 unresolved externals

when I compile the follwing code

#MY HEADER FILE

template<class X>
class Spice {
public:
Spice();
private:
};

# CPP FILE #1
#include <iostream>
#include "temp.h"
using namespace std;

template<class X>
Spice<X>::Spice()
{
sdafdsafsda;
}

# CPP FILE #2
#include <iostream>
#include <string>
#include "temp.h"
using namespace std;



int main(void) {
Spice<int> a;
return 0;
}
\

The compiler doesn't catch the 'sdafdsafsda' error in CPP FILE #1. Any
help is appreciated,

TIA,
ves

Leor Zolman
Guest
 
Posts: n/a
#2: Jul 22 '05

re: Template problem with visual studio.net


On Sat, 22 May 2004 02:16:27 GMT, Vespasian <julie.spicer@verizon.net>
wrote:
[color=blue]
>I am getting the follwoing errors,
> 1. temp error LNK2019: unresolved external symbol "public:
>__thiscall Spice<int>::Spice<int>(void)" (??0?$Spice@H@@QAE@XZ)
>referenced in function _main
> 2. temp fatal error LNK1120: 1 unresolved externals
>
>when I compile the follwing code
>
>#MY HEADER FILE
>
>template<class X>
>class Spice {
>public:
> Spice();
>private:
>};
>
># CPP FILE #1
>#include <iostream>
>#include "temp.h"
>using namespace std;
>
>template<class X>
>Spice<X>::Spice()
>{
> sdafdsafsda;
>}
>
># CPP FILE #2
>#include <iostream>
>#include <string>
>#include "temp.h"
>using namespace std;
>
>
>
>int main(void) {
> Spice<int> a;
> return 0;
>}
>\
>
>The compiler doesn't catch the 'sdafdsafsda' error in CPP FILE #1. Any
>help is appreciated,[/color]

Remember that in the inclusion model (the way most platforms work),
templates that aren't instantiated in the current translation unit are
checked syntactically but not fully compiled...and then discarded if
they're never instantiated in that TU. Your implementation of that
constructor in FILE #1 is never instantiated in that translation unit, so
the compiler doesn't care that the identifier sdaf(etc) is undefined, and
no constructor makes it into the object file.

When compiling FILE #2, on the other hand, the compiler doesn't see the
information from FILE #1, and so it cannot instantiate the constructor
template. Finally, the linker exposes the problem.

If you do it this way, you get the syntax error you're looking for:

#include <iostream>
#include "temp.h"
using namespace std;

template<class X>
Spice<X>::Spice()
{
sdafdsafsda;
}

int main(void) {
Spice<int> a;
return 0;
}

Moral of the story: put templates into header files if they're going to be
needed by more than one TU.
-leor


[color=blue]
>
>TIA,
>ves[/color]

--
Leor Zolman --- BD Software --- www.bdsoft.com
On-Site Training in C/C++, Java, Perl and Unix
C++ users: download BD Software's free STL Error Message Decryptor at:
www.bdsoft.com/tools/stlfilt.html
David Harmon
Guest
 
Posts: n/a
#3: Jul 22 '05

re: Template problem with visual studio.net


On Sat, 22 May 2004 02:16:27 GMT in comp.lang.c++, Vespasian
<julie.spicer@verizon.net> wrote,[color=blue]
> 1. temp error LNK2019: unresolved external symbol "public:
>__thiscall Spice<int>::Spice<int>(void)" (??0?$Spice@H@@QAE@XZ)
>referenced in function _main
> 2. temp fatal error LNK1120: 1 unresolved externals[/color]

This issue is covered in Marshall Cline's C++ FAQ. See the topics
"[34.12] Why can't I separate the definition of my templates class from
it's declaration and put it inside a .cpp file?"
"[34.13] How can I avoid linker errors with my template functions?"
"[34.14] How can I avoid linker errors with my template classes?"
It is always good to check the FAQ before posting. You can get the FAQ
at:
http://www.parashift.com/c++-faq-lite/


Closed Thread