- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
我现在很迷茫。我做了一个 vector 类。一切都按照我希望的方式工作,直到最后。当调用析构函数时,我收到一条错误消息:调试断言失败 BLOCK_TYPE_IS_VALID(pHead->nblockuse)。我在 SO 上看到了很多这样的问题,但我尝试过的方法没有奏效。
.h 的一部分
private:
int* _myArray;
int _size;
int _capacity;
#include "File.h"
const string RETURN_CARRIAGE_STR = "\n";
const string SIZE_STR = "Size ";
const string CAPACITY_STR = "Capacity ";
const int INITIAL_CAPACITY = 2;
int main(void)
{
cout << "\nCreating a vector Sam of size 4.";
MyVector sam( 4 );
cout << "\nPush 12 values into the vector.";
for (int i = 0; i < 12; i++)
sam.push_back(i);
cout << "\nHere is sam: ";
cout << sam;
cout << "\n---------------\n";
cout << "\nCreating a vector Joe of size 4.";
MyVector joe( 4 );
cout << "\nPush 6 values into the vector.";
for (int i = 0; i < 6; i++)
joe.push_back(i * 3);
cout << "\nHere is joe: ";
cout << joe;
cout << "\n---------------\n";
cout << "\nTest the overloaded assignment operator \"joe = sam\": ";
joe = sam;
cout << "\nHere is sam: ";
cout << sam;
cout << "\n---------------\n";
cout << "\nHere is joe: ";
cout << joe;
cout << "\n---------------\n";
// pass a copy of sam by value
PrintV(sam);
cout << endl;
system("PAUSE");
}
void PrintV(MyVector v)
{
cout << "\n--------------------\n";
cout << "Printing a copy of a vector\n";
cout << v;
}
// Default Constructor
MyVector::MyVector()
{
_myArray = new int[INITIAL_CAPACITY];
_size = 0;
_capacity = INITIAL_CAPACITY;
//cout << "Default Constructor" << endl;
}
MyVector::MyVector(int aSize)
{
_myArray = new int[aSize];
_size = 0;
_capacity = aSize;
//cout << "Parameterized Constructor" << endl;
}
MyVector::~MyVector()
{
if(_myArray != NULL)
{
delete[] this->_myArray; // --------------This is where I get an error
this->_myArray = NULL;
}
//cout << "Destructor" << endl;
}
int MyVector::GetSize()
{
return _size;
//cout << " size";
}
int MyVector::GetCapacity()
{
return _capacity;
//cout << _capacity << " capacity" << endl;
}
void MyVector::Clear()
{
int* resize_arr = new int[INITIAL_CAPACITY];
delete[] _myArray;
_myArray = resize_arr;
_capacity = INITIAL_CAPACITY - 1;
_size = 0;
}
void MyVector::push_back(int newValue)
{
if(_size < _capacity)
{
_myArray[_size] = newValue;
}
else {
int* resize_arr = new int[_capacity*2];
for(int i = 0; i <= _size; i++)
resize_arr[i] = _myArray[i];
resize_arr[_size] = newValue;
delete[] _myArray;
_myArray = resize_arr;
_capacity = _capacity * 2;
}
_size++;
//cout << _size << " size" << endl;
}
int MyVector::at(int idx)
{
return _myArray[idx];
//cout << _myArray[idx] << " value at index" << endl;
}
ostream& operator<<(ostream& os, MyVector& vec)
{
ostringstream convert;
ostringstream convertCap;
convert << vec.GetSize();
string sizeConverted = convert.str();
convertCap << vec.GetCapacity();
string capConverted = convertCap.str();
string firstTemp = "";
firstTemp = SIZE_STR + sizeConverted + RETURN_CARRIAGE_STR + CAPACITY_STR + capConverted + RETURN_CARRIAGE_STR;
for(int idx = 0; idx < vec.GetSize(); idx++)
{
string secondTemp = "";
ostringstream convertSize;
convertSize << vec.at(idx);
string vecAtIdx = convertSize.str();
secondTemp = vecAtIdx + RETURN_CARRIAGE_STR;
cout << secondTemp;
}
os << firstTemp;
return os;
}
MyVector& MyVector::operator=(MyVector& setterVect)
{
delete [] _myArray;
//MyVector* mPtr = new MyVector();
_myArray = setterVect._myArray;
_capacity = setterVect._capacity;
_size = setterVect._size;
return *this;
}
最佳答案
_myArray = setterVect._myArray;
您的复制赋值运算符已损坏。在该运算符之后,两个实例都具有相同的 _myArray
值。因此,一旦一个被破坏,另一个就会留下一个指向不再存在的东西的指针。
故事的寓意——使用 std::vector
。
关于c++ - Deconstructor 的调试断言失败 BLOCK_TYPE_IS_VALID(pHead->nblockuse),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13812718/
我打算写一个程序,使用虚函数做多边形计算,但是当我完成这个程序后,出现 BLOCK_TYPE_IS_VALID(pHead -> nBlockUse) 错误 // pointers to base c
int main(void) { const char* kung = "Foo"; delete []kung; } 在这段代码中,为什么我得到以下 debug assert fai
我现在很迷茫。我做了一个 vector 类。一切都按照我希望的方式工作,直到最后。当调用析构函数时,我收到一条错误消息:调试断言失败 BLOCK_TYPE_IS_VALID(pHead->nblock
我是 C++/CLI 的新手,但多年来一直在编写托管代码......显然太多年了。 :) 试图为第三方提供的非托管类编写包装器,我看到了一些奇怪的东西。我希望你们都可以帮助我清除我的讨厌和真正奇怪的东
我是一名优秀的程序员,十分优秀!