C++:分段错误(核心转储)

c++: segmentation fault (core dumped)

本文关键字:核心 转储 错误 分段 C++      更新时间:2023-10-16

我正在尝试使用指针和模板在C++中实现动态数组,以便我可以接受所有类型的数组。代码在int上运行良好,但使用string会产生错误。我在网上尝试了其他SO问题,但对我的场景一无所获。

法典:

#include <iostream>
#include <string>
using namespace std;
template <typename T>
class dynamicIntArray
{
private:
T *arrPtr = new T[4]();
int filledIndex = -1;
int capacityIndex = 4;
public:
// Get the size of array
int size(void);
// Insert a data to array
bool insert(T n);
// Show the array
bool show(void);
};
template <typename T> 
int dynamicIntArray<T>::size(void)
{
return capacityIndex + 1;
}
template <typename T> 
bool dynamicIntArray<T>::insert(T n)
{
if (filledIndex < capacityIndex)
{
arrPtr[++filledIndex] = n;
return true;
}
else if (filledIndex == capacityIndex)
{
// Create new array of double size
capacityIndex *= 2;
T *newarrPtr = new T[capacityIndex]();
// Copy old array
for (int i = 0; i < capacityIndex; i++)
{
newarrPtr[i] = arrPtr[i];
}
// Add new data
newarrPtr[++filledIndex] = n;
arrPtr = newarrPtr;
return true;
}
else
{
cout << "ERROR";
}
return false;
}
template <typename T> 
bool dynamicIntArray<T>::show(void)
{
cout << "Array elements are: ";
for (int i = 0; i <= filledIndex; i++)
{
cout << arrPtr[i] << " ";
}
cout << endl;
return true;
}
int main()
{
dynamicIntArray<string> myarray;
myarray.insert("A");
myarray.insert("Z");
myarray.insert("F");
myarray.insert("B");
myarray.insert("K");
myarray.insert("C");
cout << "Size of my array is: " << myarray.size() << endl;
myarray.show();
}

错误:

segmentaion fault (core dumped)

经典的逐一错误:

if (filledIndex < capacityIndex)
{
arrPtr[++filledIndex] = n;

在插入第 5 项之前,filledIndex3

通过最初将filledIndex设置为0并将arrPtr[++filledIndex] = n;更改为arrPtr[filledIndex++] = n;来修复它

您应该注意,您的代码存在严重的缺陷:内存泄漏,可疑的名称和样式等。您可能希望将其固定版本发布到 https://codereview.stackexchange.com/。