| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 900 人关注过本帖
标题:帮我看下这个程序。说链接错误。
只看楼主 加入收藏
songhuirong1
Rank: 2
等 级:论坛游民
帖 子:116
专家分:38
注 册:2010-6-15
结帖率:94.12%
收藏
已结贴  问题点数:20 回复次数:12 
帮我看下这个程序。说链接错误。
这是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
lintaoyn
Rank: 11Rank: 11Rank: 11Rank: 11
等 级:小飞侠
威 望:4
帖 子:606
专家分:2499
注 册:2009-4-8
收藏
得分:4 
程序代码:
template <typename elemType>
ostream &operator <<(ostream &os, const Array<elemType> &theArray)
{
    for(int ix=0;ix<theArray._size;++ix)//指出_size
        os << theArray.pArray[ix] << " ";

    return os;
}

迭代的是人,递归的是神。
2010-12-28 17:45
songhuirong1
Rank: 2
等 级:论坛游民
帖 子:116
专家分:38
注 册:2010-6-15
收藏
得分:0 
回复 楼主 songhuirong1
我试了下,还是一样的错误。
2010-12-28 19:19
lintaoyn
Rank: 11Rank: 11Rank: 11Rank: 11
等 级:小飞侠
威 望:4
帖 子:606
专家分:2499
注 册:2009-4-8
收藏
得分:4 
贴上编译器报的错误。

迭代的是人,递归的是神。
2010-12-28 19:48
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
lintaoyn
Rank: 11Rank: 11Rank: 11Rank: 11
等 级:小飞侠
威 望:4
帖 子:606
专家分:2499
注 册:2009-4-8
收藏
得分:8 
程序代码:
template<typename T>class Array;
template<typename T>ostream &operator <<(ostream &, const Array<T>&);
template <typename elemType>
class Array
{
public:
    Array(elemType *, int);
    ~Array();

    elemType &operator [](int) const;
    void display() const;
    friend ostream& operator << <elemType>(ostream& ,const Array<elemType>&);
private:
    int _size;
    elemType *pArray;
};
再改下这个。
在DEV-C++中能够通过编译。

迭代的是人,递归的是神。
2010-12-28 21:44
missiyou
Rank: 5Rank: 5
等 级:贵宾
威 望:16
帖 子:531
专家分:218
注 册:2007-10-9
收藏
得分:0 
去掉! cout << intArray << endl;

ostream 不能设别这个数组!
2010-12-29 10:21
missiyou
Rank: 5Rank: 5
等 级:贵宾
威 望:16
帖 子:531
专家分:218
注 册:2007-10-9
收藏
得分:0 
class std::basic_ostream<char,struct std::char_traits<char>  这是的std 使用traits 技术! 在traits 里面没有你自己定义的类型!
想看地址的话

cout << &intArray << endl;
2010-12-29 10:24
songhuirong1
Rank: 2
等 级:论坛游民
帖 子:116
专家分:38
注 册:2010-6-15
收藏
得分:0 
8楼和9楼的,你们都没明白我的意思,我是想重载<<运算符,然后实现直接打印数组对象。
2010-12-29 11:59
快速回复:帮我看下这个程序。说链接错误。
数据加载中...
 
   



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

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