[...]"-6ren"> [...]"-因此,我创建了一个基本的 VC++ 程序,并创建了一个带有 1 个方法(除了构造函数和析构函数)的模板类。我收到以下错误: >main.obj : error LNK2019: unresolved -6ren">
gpt4 book ai didi

c++ - 未解析的外部符号 "public: __thiscall Vector [...]"

转载 作者:太空宇宙 更新时间:2023-11-04 16:26:40 25 4
gpt4 key购买 nike

因此,我创建了一个基本的 VC++ 程序,并创建了一个带有 1 个方法(除了构造函数和析构函数)的模板类。我收到以下错误:

>main.obj : error LNK2019: unresolved external symbol "public: __thiscall Vector<int>::~Vector<int>(void)" (??1?$Vector@H@@QAE@XZ) referenced in function _main
>main.obj : error LNK2019: unresolved external symbol "public: __thiscall Vector<int>::Vector<int>(int)" (??0?$Vector@H@@QAE@H@Z) referenced in function _main
>c:\users\edy\documents\visual studio 2010\Projects\ex01\Debug\ex01.exe : fatal error LNK1120: 2 unresolved externals

这是我的代码:

(CPP类文件)

using namespace std;
#include "Vector.h"
template <class T> Vector<T>::Vector(int n)
{
this.crt = 0;
this.dim = n;
this.elem = new T[100];
}

template <class T> void Vector<T>::add(T e)
{
this.elem[crt] = e;
this.crt++;
}

template <class T> Vector<T>::~Vector(void)
{
this.crt = 0;
}

(H类文件)

#pragma once
template <class T> class Vector
{
public:
int dim;
T* elem;

Vector(int n);
void add(T e);
~Vector(void);

private:
int crt;
};

(主文件)

using namespace std;
#include "Vector.h"

int main(void)
{
Vector<int> x(5);
//x.add(1); <--- if i decomment this line, it throws an additional error
return 0;
}

大多数解决方案都没有实现方法,但我实现了所有方法。我不知道可能出了什么问题。有帮助吗?

最佳答案

模板类的实现需要对所有使用它们的翻译单元可见。将实现移至头文件。

在你问之前 - 不,没有办法隐藏它们,除非你事先知道你拥有的类(class)的特化。如果您希望您的 Vector 是通用的,则实现需要可见。

如果你想将它们分开,通常的做法是将实现放在 .impl 文件中,并将其包含在 header 中。

关于c++ - 未解析的外部符号 "public: __thiscall Vector<int> [...]",我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11091540/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com