鱼C论坛

 找回密码
 立即注册
查看: 2270|回复: 1

这个程序运行会出错

[复制链接]
发表于 2014-1-19 11:36:59 | 显示全部楼层 |阅读模式

马上注册,结交更多好友,享用更多功能^_^

您需要 登录 才可以下载或查看,没有账号?立即注册

x
这个程序在Dev-C++编译运行出错,原因在哪儿?
/************************************************
 * array_test -- Test the use of the array class*
 ************************************************/
#include <iostream>
#include <cstring>
/************************************************
 * array -- Classic variable length array class.*
 *                                              *
 * Member functions:                            *
 *      operator [] -- Return an item           *
 *              in the array.                   *
 ************************************************/
class array {
    protected:
        // Size of the array
        int size;
        // The array data itself
        int *data;
    public:
        // Constructor.
        // Set the size of the array
        // and create data
        array(const int i_size):
            size(i_size),
            data(new int[size])
        {
            // Clear the data
            memset(data, '\0',
                    size * sizeof(data[0]));
        }
        // Destructor -- Return data to the heap
        virtual ~array(void)
        {
            delete []data;
            data = NULL;
        }
        // Copy constructor.
        // Delete the old data and copy
        array(const array &old_array)
        {
            delete []data;
            data = new int[old_array.size];
            memcpy(data, old_array.data,
                    size * sizeof(data[0]));
        }
        // operator =.
        // Delete the old data and copy
        array & operator = (
                const array &old_array)
        {
                        if (this == &old_array)
                   return (*this);
            delete []data;
            data = new int[old_array.size];
            memcpy(data, old_array.data,
                    size * sizeof(data[0]));
            return (*this);
        }
    public:
        // Get a reference to an item in the array
        int &operator [](const unsigned int item)
        {
            return data[item];
        }
};
/**********************************************
 * three_more_elements  --                    *
 *      Copy from_array to to_array and       *
 *      put on three more elements.           *
 **********************************************/
void three_more_elements(
    // Original array
    array to_array,
    // New array with modifications
    const array &from_array
)
{
    to_array = from_array;
    to_array[10] = 1;
    to_array[11] = 3;
    to_array[11] = 5;
}
int main()
{
    array an_array(30);  // Simple test array
    an_array[2] = 2;    // Put in an element
    // Put on a few more
    three_more_elements(an_array, an_array);
    return(0);
}

想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

发表于 2014-1-19 16:39:00 | 显示全部楼层
自己调试看看吧!
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

发表于 2014-1-19 21:16:17 | 显示全部楼层
在VC++编译里是可以通过的,源代码没问题,那就是编译器的问题了,换个编译器楼主
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

 楼主| 发表于 2014-1-20 08:39:42 | 显示全部楼层

我当然知道vc++能够编译成功啦。。但真的没问题吗?拷贝构造函数那里。。。
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

小黑屋|手机版|Archiver|鱼C工作室 ( 粤ICP备18085999号-1 | 粤公网安备 44051102000585号)

GMT+8, 2024-11-23 11:47

Powered by Discuz! X3.4

© 2001-2023 Discuz! Team.

快速回复 返回顶部 返回列表