nihaomaccc 2016-12-06 12:07 采纳率: 0%
浏览 1058
已结题

vector类型静态成员变量 overflow的问题

#include
#include
#include
using namespace std;

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

    }

    //int length = vec.size();
    //for (int i = 0; i < length; i++)
    //{
    //  if (&vec[i] == this)
    //  {
    //      CMyClass temp = vec[i];
    //      
    //  }

/*  }*/
    //for (it=vec.begin(); it != vec.end(); it++)
    //{
    //  if (vec[])
    //  vec.erase(it);
    //}
    //cout << "delete d" << endl;

}
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;
}
类里的vector类型静态成员变量,目的是创建新对象时把它加入到容器中,析构时反之 现在出现overflow的问题

  • 写回答

3条回答 默认 最新

  • oyljerry 2016-12-06 13:10
    关注

    就是erase的问题,你需要用it = erase的返回值

    评论

报告相同问题?

悬赏问题

  • ¥15 求差集那个函数有问题,有无佬可以解决
  • ¥15 【提问】基于Invest的水源涵养
  • ¥20 微信网友居然可以通过vx号找到我绑的手机号
  • ¥15 寻一个支付宝扫码远程授权登录的软件助手app
  • ¥15 解riccati方程组
  • ¥15 display:none;样式在嵌套结构中的已设置了display样式的元素上不起作用?
  • ¥15 使用rabbitMQ 消息队列作为url源进行多线程爬取时,总有几个url没有处理的问题。
  • ¥15 Ubuntu在安装序列比对软件STAR时出现报错如何解决
  • ¥50 树莓派安卓APK系统签名
  • ¥65 汇编语言除法溢出问题