gpt4 book ai didi

C++ 创建原始数组类

转载 作者:行者123 更新时间:2023-11-30 04:15:27 25 4
gpt4 key购买 nike

作为练习,我尝试创建一个类 myArray 作为简化的数组类。这是我的标题:

#ifndef myArray_h
#define myArray_h

typedef double ARRAY_ELEMENT_TYPE;

class myArray {

public:
//--constructors
myArray(int initMax);
// post: Allocate memory during pass by value

myArray(const myArray & source);
// post: Dynamically allocate memory during pass by value

//--destructor
~myArray();
// post: Memory allocated for my_data is deallocated.

//--modifier
void set(int subscript, ARRAY_ELEMENT_TYPE value);
// post: x[subscript] = value when subscript is in range.
// If not, an error message is displayed.

//--accessor
ARRAY_ELEMENT_TYPE sub(int subscript) const;
// post: x[subscript] is returned when subscript is in range.
// If not, display an error message and return [0].

private:
ARRAY_ELEMENT_TYPE* my_data;
int my_capacity;
};
#endif

这是我的实现:

#include "myArray.h"
#include <iostream>
#include <cstring>

using namespace std;

typedef double ARRAY_ELEMENT_TYPE;

//--constructors
myArray::myArray(int initMax)
{
my_capacity = initMax;
}

myArray::myArray(const myArray & source)
{
int i;
my_data = new ARRAY_ELEMENT_TYPE[source.my_capacity];

for(i=0; i < my_capacity; i++)
my_data[i] = source.sub(i);
}

//--destructor
myArray::~myArray()
{
delete [ ] my_data;
}

//--modifier
void myArray::set(int subscript, ARRAY_ELEMENT_TYPE value)
{
if(subscript > my_capacity - 1)
{
cout << "**Error: subscript " << subscript << " not in range 0.." << my_capacity-1 << ". The array is unchanged." << endl;
}
else
my_data[subscript] = value;
}

//--accessor
ARRAY_ELEMENT_TYPE myArray::sub(int subscript) const
{
if(subscript >= my_capacity)
{
cout << "**Error: subscript " << subscript << " not in range 0.." << my_capacity-1 << ". Returning first element." << endl;
cout << my_data[0];
}
else
{
return my_data[subscript];
}
}

我将其用作测试驱动程序:

#include <iostream>
using namespace std;
typedef double ARRAY_ELEMENT_TYPE;
#include "myArray.h"

void show (const myArray & arrayCopy, int n)
{
for(int j = 0; j < n; j++)
cout << arrayCopy.sub(j) << endl;
}

int main()
{
int n = 6;
myArray a(6);
a.set(0, 1.1);
a.set(1, 2.2);
a.set(2, 3.3);
a.set(3, 4.4);
a.set(4, 5.5);
a.set(5, 6.6);
show(a, n);
cout << a.sub(11) << endl;
a.set(-1, -1.1);

return 0;
}

问题是当我运行它时,我暂时什么也得不到,然后是“按任意键继续...”提示。出了什么问题?

最佳答案

myArray构造函数没有为 my_data 分配内存.第一次调用set ,它试图写入一个未初始化的指针。这会导致未定义的行为,但很可能会发生崩溃。

您应该将构造函数更改为

myArray::myArray(int initMax)
{
my_capacity = initMax;
my_data = new ARRAY_ELEMENT_TYPE[my_capacity];
}

您还可以考虑代码的其他一些问题

在'set'中,测试

if(subscript > my_capacity - 1)

应该是

if(subscript < 0 || subscript > my_capacity - 1)

或者您可以更改 subscript类型为 unsigned int 的参数.

sub , 行 cout << my_data[0];大概应该是 return my_data[0];

关于C++ 创建原始数组类,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18279498/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com