| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 900 人关注过本帖
标题:帮我看下这个程序。说链接错误。
取消只看楼主 加入收藏
songhuirong1
Rank: 2
等 级:论坛游民
帖 子:116
专家分:38
注 册:2010-6-15
结帖率:94.12%
收藏
已结贴  问题点数:20 回复次数:6 
帮我看下这个程序。说链接错误。
这是Array.H头文件:
#ifndef ARRAY_H
#define ARRAY_H

#include <iostream>
using namespace std;

template <typename elemType>
class Array
{
public:
    Array(elemType *, int);
    ~Array();

    elemType &operator [](int) const;
    void display() const;
    friend ostream &operator <<(ostream &, const Array &);
private:
    int _size;
    elemType *pArray;
};

template <typename elemType>
inline Array<elemType>::Array(elemType *elem, int size):
_size(size)
{
    pArray = new elemType[_size];

    for(int ix=0;ix<_size;++ix)
    {
        pArray[ix] = elem[ix];
    }
}

template <typename elemType>
inline Array<elemType>::~Array()
{
    delete [] pArray;
}

template <typename elemType>
inline elemType &Array<elemType>::operator [](int offset) const
{
    if(offset >= _size)
    {
        cout << "数组越界!" << endl;

        exit(-1);
    }
    else
        return pArray[offset];
}

template <typename elemType>
inline void Array<elemType>::display() const
{
    for(int ix=0;ix<_size;++ix)
        cout << pArray[ix] << " ";

    cout << endl;
}

#endif

这是Array.cpp源文件:
#include "Array.h"
#include <iostream>
using namespace std;

template <typename elemType>
ostream &operator <<(ostream &os, const Array<elemType> &theArray)
{
    for(int ix=0;ix<_size;++ix)
        os << theArray.pArray[ix] << " ";

    return os;
}

int main()
{
    int ia[] = {12,25,62,74,29,38,41,82};
    Array<int> intArray(ia,sizeof(ia)/sizeof(ia[0]));
    intArray.display();

    cout << intArray << endl;
   
    return 0;
}

但是运行程序,说链接错误,请大侠帮忙看看。
搜索更多相关主题的帖子: class void private display include 
2010-12-28 16:54
songhuirong1
Rank: 2
等 级:论坛游民
帖 子:116
专家分:38
注 册:2010-6-15
收藏
得分:0 
回复 楼主 songhuirong1
我试了下,还是一样的错误。
2010-12-28 19:19
songhuirong1
Rank: 2
等 级:论坛游民
帖 子:116
专家分:38
注 册:2010-6-15
收藏
得分:0 
错误    1    error LNK2001: 无法解析的外部符号 "class std::basic_ostream<char,struct std::char_traits<char> > & __cdecl operator<<(class std::basic_ostream<char,struct std::char_traits<char> > &,class Array<int> const &)" (??6@YAAAV?$basic_ostream@DU?$char_traits@D@std@@@std@@AAV01@ABV?$Array@H@@@Z)    Array.obj    CP10
错误    2    fatal error LNK1120: 1 个无法解析的外部命令    F:\Program Files\source\CP10\Debug\CP10.exe    CP10
2010-12-28 20:29
songhuirong1
Rank: 2
等 级:论坛游民
帖 子:116
专家分:38
注 册:2010-6-15
收藏
得分:0 
回复 4楼 lintaoyn
错误    1    error LNK2001: 无法解析的外部符号 "class std::basic_ostream<char,struct std::char_traits<char> > & __cdecl operator<<(class std::basic_ostream<char,struct std::char_traits<char> > &,class Array<int> const &)" (??6@YAAAV?$basic_ostream@DU?$char_traits@D@std@@@std@@AAV01@ABV?$Array@H@@@Z)    Array.obj    CP10
错误    2    fatal error LNK1120: 1 个无法解析的外部命令    F:\Program Files\source\CP10\Debug\CP10.exe    CP10
2010-12-28 20:29
songhuirong1
Rank: 2
等 级:论坛游民
帖 子:116
专家分:38
注 册:2010-6-15
收藏
得分:0 
8楼和9楼的,你们都没明白我的意思,我是想重载<<运算符,然后实现直接打印数组对象。
2010-12-29 11:59
songhuirong1
Rank: 2
等 级:论坛游民
帖 子:116
专家分:38
注 册:2010-6-15
收藏
得分:0 
回复 6楼 songhuirong1
我解决了。太感谢你了。为什么要这么改呢?friend ostream &operator <<<elemType>(ostream &, const Array &);这是声明,ostream &operator <<(ostream &os, const Array<elemType> &theArray)这是定义。我自己又改了下,我如果把定义改成这样就不行,ostream &operator << <elemType>(ostream &os, const Array<elemType> &theArray),编译就报错,这是为什么呀?声明中有<elemType>,但是定义中没有<elemType>?
2010-12-29 13:02
songhuirong1
Rank: 2
等 级:论坛游民
帖 子:116
专家分:38
注 册:2010-6-15
收藏
得分:0 
回复 2楼 lintaoyn
您一定是C++界的高手了。我现在是一名企业的网络管理员,但是我发现我对C++非常感兴趣,想将来从事C++开发。我现在是C++初学者,不知道这条路怎么走呀,能指点下小弟吗。我现在在看C++ Primer第三版这本书,我想找C++开发方面的工作,那该怎么走能让我尽快找到这方面的工作呢?等进入C++领域,然后我慢慢来研究C++。请高手指点下。
2010-12-30 19:14
快速回复:帮我看下这个程序。说链接错误。
数据加载中...
 
   



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

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