| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 666 人关注过本帖
标题:如何解释这个编译错误?!
取消只看楼主 加入收藏
sophia
Rank: 1
等 级:新手上路
帖 子:14
专家分:0
注 册:2004-9-5
收藏
 问题点数:0 回复次数:0 
如何解释这个编译错误?!

哪位高人帮我看下下面的代码为什么链接出错!

分三个文件,编译时可能通过,但链接出错
Dev C++中出错信息:
[Linker error] undefined reference to `ArrayList<int>::ArrayList(int)'
ld returned 1 exit status

/* 文件名:ArrayList.cpp
*
* 功能:
*
* 作者:
* 时间:
*
* 描述:
*/
#include <iostream>
#include "ArrayList.h"

template <class T>
ArrayList<T>::ArrayList(int size)
{
_List = new T [size];
_length = 0;
_size = size;
}


/* 文件名:main.cpp
*
* 功能:
*
* 作者:
* 时间:
*
* 描述:
*/
#include <iostream>
#include "ArrayList.h"

using namespace std;

int main()
{
ArrayList<int> intArrayList(5);
system("PAUSE");
return 0;
}



/* 文件名: ArrayList.h
*
* 功能: 用数组描述的线性类声明
*
* 作者: zhoujun
* 时间: 2006-3-23
*
* 描述: Array_LinearList
*/
#ifndef ArrayList_H_
#define ArrayList_H_
#include <iostream>


template <class T>
class ArrayList
{
public:
ArrayList(int size = 10);
~ArrayList() { delete [] _List;}
bool IsEmpty();
int Length();
bool Find(int k, T& x) const;
int Search(const T& x) const;
ArrayList<T>& Insert(int k, const T& x);
ArrayList<T>& Delete(int k, T& x);
void OutPut(std::ostream& out) const;

private:
int _length;
T * _List;
int _size;
};

#endif


[此贴子已经被作者于2006-3-25 12:12:40编辑过]

搜索更多相关主题的帖子: ArrayList 编译 int include 
2006-03-25 12:11
快速回复:如何解释这个编译错误?!
数据加载中...
 
   



关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.027997 second(s), 8 queries.
Copyright©2004-2024, BCCN.NET, All Rights Reserved