gpt4 book ai didi

C++ 2D指针数组段错误

转载 作者:行者123 更新时间:2023-11-30 01:24:57 25 4
gpt4 key购买 nike

我正面临一个二维指针数组的问题。它编译没有错误,但是当我尝试运行该文件时,我得到的只是一行,说我有一个段错误。

我的头文件:

#ifndef __TWODARRAY_H__
#define __TWODARRAY_H__

template <typename T>
class TwoDArray {
private:
T** theArray;
int numRows;
int numCols;
T defSpace;

public:
TwoDArray<T> (int r, int c, T def);
~TwoDArray<T>();
void insert(int r, int c, T value);
T access(int r, int c);
void remove(int r, int c);
void print();
int getNumRows();
int getNumCols();
};
#endif

我的方法:

#include "TwoDArray.h"
#include <iostream>
#include <assert.h>
#include <string>

//initializes the 2D Array
template <typename T>
TwoDArray<T>::TwoDArray(int r, int c, T def) {
assert(r > 0 && c > 0);
numRows = r;
numCols = c;
defSpace = def;
theArray = new T*[r];
for(int i=0; i<r; i++) {
theArray[i] = new T[c];
}
//sets all values to the default
for(int i=0; i<r; i++) {
for(int j=0; j<c; j++) {
theArray[i][j] = defSpace;
}
}
}

//deletes the 2D Array
template<typename T>
TwoDArray<T>::~TwoDArray() {
for(int i=0; i<numRows; i++) {
delete[] theArray[i];
}
delete[] theArray;
}

//inserts value v at row r and column c
template<typename T>
void TwoDArray<T>::insert(int r, int c, T value) {
assert(r < numRows && c < numCols);
assert(value != defSpace);
theArray[r][c] = value;
}

//get value at row r, column c
template<typename T>
T TwoDArray<T>::access(int r, int c) {
assert(r < numRows && c < numCols);
T result = theArray[r][c];
return result;
}

//set value at row r and column c back to default
template<typename T>
void TwoDArray<T>::remove(int r, int c) {
assert(r < numRows && c < numCols);
assert(theArray[r][c] != defSpace);
theArray[r][c] = defSpace;
}

//print the 2D Array
template<typename T>
void TwoDArray<T>::print() {
for(int i=0; i<numRows; i++) {
for(int j=0;j<numCols; i++) {
std::cout << theArray[i][j];
std::cout << " ";
}
std::cout << std::endl;
}
}

//gets number of rows for test
template<typename T>
int TwoDArray<T>::getNumRows() {
return numRows;
}

//gets number of columns for test
template<typename T>
int TwoDArray<T>::getNumCols() {
return numCols;
}

template class TwoDArray<int>;
template class TwoDArray<std::string>;

还有我的主要内容:

#include <iostream>
#include <string>
#include "TwoDArray.h"

using std::cout;
using std::endl;

int main() {
TwoDArray<int>* i = new TwoDArray<int>(5, 5, 0);

TwoDArray<std::string>* s = new TwoDArray<std::string>(5, 5, "o");

i->insert(1, 1, 1);
i->insert(1, 3, 1);
i->insert(3, 2, 8);
i->insert(2, 0, 3);
i->insert(2, 4, 3);
i->insert(3, 2, 8);

i->print();


s->insert(0, 2, "North");
s->insert(4, 2, "South");
s->insert(2, 4, "East");
s->insert(2, 0, "West");

s->print();

return 0;
}

知道为什么我会遇到段错误吗?

最佳答案

这是一个错误:

template<typename T>
void TwoDArray<T>::print() {
for(int i=0; i<numRows; i++) {
for(int j=0;j<numCols; i++) { // should be j++, not i++
std::cout << theArray[i][j];
std::cout << " ";
}
std::cout << std::endl;
}
}

作为i在外部和内部都在增加 for并最终导致i等于 numRows并越过数组末尾,这是未定义的行为,可能是段错误的原因。

由于TwoDArray中有一个动态分配的成员您需要防止复制 TwoDArray 的实例或实现赋值运算符和复制构造函数(参见 What is The Rule of Three? )。

如果这不是学习练习,您可以使用 vector<vector<T>>相反。

此外,由于数组的维度是编译时常量,因此也可以将它们设为模板参数并完全避免动态内存:

template <typename TType, int TRows, int TCols>
class TwoDArray {
private:
TType theArray[TRows][TCols];
TType defSpace;
....

TwoDArray<int, 5, 5> i(0);

参见 http://ideone.com/dEfZn5完整演示。

关于C++ 2D指针数组段错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13075540/

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