nihaomaccc 2016-12-06 10:30 采纳率: 0%
浏览 1264
已结题

C++ VECTOR push_back 出现stack_overflow

#include
#include
#include
using namespace std;

class CMyClass
{
public:
CMyClass() {}
CMyClass(int a)
{
this->m_nValue = a;
vec.push_back(*this);
}
CMyClass(const CMyClass&c) {
m_nValue = c.m_nValue;
}
~CMyClass()
{
/*不知道怎么指向当前类*/
vector::iterator it;
for (it = vec.begin(); it != vec.end(); it++)
{
if (it->vec == *this)
vec.erase(it);
}

}
friend bool operator==(vector<CMyClass>v, CMyClass& c2)
{
    int length = v.size();
    for (int i = 0; i < length; i++)
    {
        if (&v[i] == &c2)
            return true;
    }
    return false;
}
friend ostream& operator<<(ostream& out, CMyClass& c)
{
    out << c.m_nValue << endl;
    return out;
}
static void ShowList()
{
    vector<CMyClass>::iterator it;
    for (it = vec.begin(); it != vec.end(); it++)
    {
        cout << *it;

    }
}

private:
int m_nValue;
static vectorvec;
};

vectorCMyClass::vec;

int main()
{
CMyClass a(100);
CMyClass b(1);
CMyClass c;
CMyClass* d = new CMyClass;
*d = 10;
cout << "The first end:" << endl;
CMyClass::ShowList();
if (1)
{
CMyClass e(1000);
cout << "The second end:" << endl;
CMyClass::ShowList();
}
delete d;
cout << "The third end:" << endl;
CMyClass::ShowList();
return 0;
}
类CMyClass中的vector类型的静态成员变量,目的是在创建对象时把他加入到容器中,在析构对象时把它从该容器中删除。现在debug,出现了overflow的错误,求教!

  • 写回答

2条回答 默认 最新

  • devmiao 2016-12-06 16:43
    关注
    评论

报告相同问题?

悬赏问题

  • ¥100 Jenkins自动化部署—悬赏100元
  • ¥15 关于#python#的问题:求帮写python代码
  • ¥20 MATLAB画图图形出现上下震荡的线条
  • ¥15 关于#windows#的问题:怎么用WIN 11系统的电脑 克隆WIN NT3.51-4.0系统的硬盘
  • ¥15 perl MISA分析p3_in脚本出错
  • ¥15 k8s部署jupyterlab,jupyterlab保存不了文件
  • ¥15 ubuntu虚拟机打包apk错误
  • ¥199 rust编程架构设计的方案 有偿
  • ¥15 回答4f系统的像差计算
  • ¥15 java如何提取出pdf里的文字?