在c++中有错误的;未实现的构造函数

Having an error in c++; Unimplemented constructors?

本文关键字:实现 构造函数 有错误 c++      更新时间:2023-10-16

我是编程新手,正在尝试实现一个简单版本的ArrayList。我遇到了一个错误,当我试图找到解决方案时,人们说这是因为声明了构造函数,但没有实现。我实现了我在头中声明的所有构造函数,所以我不确定出了什么问题。感谢您的建议!

错误1错误LNK2019:未解析的外部符号"public:__thiscallArrayList::ArrayList(void)"(??0$ArrayList@H@@QAE@XZ)在函数_main 中引用

错误2错误LNK2019:未解析的外部符号"public:void__thiscall ArrayList::add(int)"(?add@$ArrayList@H@@QAEXH@Z)在函数_main 中引用

错误3错误LNK1120:2个未解析的外部

ArrayList.h

#pragma once
#ifndef ArrayList_h
#define ArrayList_h
#include <stdexcept>
using namespace std;
template <class T>
class ArrayList
{
public:
ArrayList();
~ArrayList();
void add(T item);
void expandArray();
T get(int index);
private:
int size;
int length;
T* list;
};
#endif
//ArrayList.cpp
#include "ArrayList.h"
template <class T>
ArrayList<T>::ArrayList(){
size=1;
length=0;
list = new T(size);
for(int x=0; x<size;x++){
list[x]=NULL;
}
}
template <class T>
ArrayList<T>::~ArrayList(){
delete[] list;
}

template <class T>
void ArrayList<T>::add(T item){
if(length>=size){
expandArray();
}
list[length]=item;
length++;
}
template <class T>
void ArrayList<T>::expandArray(){
size*=2;
T* temp = new T(size);
for(int x=0;x<size;x++){
temp[x]=NULL;
}
for(int x=0;x<length;x++){
temp[x]=list[x];
}
delete[] list;
list=temp;
}
template <class T>
T ArrayList<T>::get(int index){
if(index>length||index<0){
throw out_of_range("Index out of bounds!");
}
return list[index];
}

主要.cpp

#include "ArrayList.h"

int main(){
ArrayList<int>* list = new ArrayList<int>();
for(int x=0; x<=30;x++){
list->add(x);
}
return 0;
}

模板定义需要在头文件中。将ArrayList<T>::ArrayList构造函数定义移动到ArrayList.h中。