Connecting Tech Pros Worldwide Help | Site Map

Template problem with visual studio.net

 
LinkBack Thread Tools Search this Thread
  #1  
Old July 22nd, 2005, 11:25 AM
Vespasian
Guest
 
Posts: n/a
Default Template problem with visual studio.net

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

  #2  
Old July 22nd, 2005, 11:25 AM
Leor Zolman
Guest
 
Posts: n/a
Default 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
  #3  
Old July 22nd, 2005, 11:25 AM
David Harmon
Guest
 
Posts: n/a
Default 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/


 

Bookmarks

Thread Tools Search this Thread
Search this Thread:

Advanced Search

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On

Popular Articles

What is Bytes?

We are a network of experts and professionals in IT and software development that help one another with answers to tough questions and share insights. Get the best answers to your questions from over 220,840 network members.