我有一个指针向量..
我想通过存储在std :: vector中的指针访问我的Image对象。在迭代器找到我的对象之后,我想访问/修改向量中指针所指向的Image对象的某些成员。
请帮助!!
class Image;
typedef std::vector <Image*> VecImages;
typedef VecImages::iterator ImagesIter;
class My_Images
{
private:
VecImages m_Images;
public:
My_Images() {}
~My_Images();
void addImage(Image* img) {m_Images.push_back(img);}
Image* getImage(string& rID);
};
// get image method
Image* My_Images::getImage(string& rID)
{
ImagesIter foundImg = m_Images.begin();
while (foundImg != m_Images.end()) {
Image* img = *foundImg; ***<<<<----------- [EXC_BAD_ACCESS is reported here]***
const string &strID = img->get_strRId();
if (strID == rID) {
return (*foundImg);
}
++foundImg;
}
return NULL;
}
// get-id method
const string& Image::get_strRId(void) {return m_strRId;}
// copy constructor
Image::Image(const Image& _src)
: m_strRId(_src.m_strRId)
{}
我有另一个名为builder的类......在那里我正在调用这样的addImage()方法...... My_Images * m_images; (我创造了这个'新') Image * currImg = new Image; currImg-&GT;的setName( “ABC”); ...还有几个其他'set'函数在currImg上调用(主要是设置std :: string)。
然后我使用以下调用将其添加到矢量中。
m_images-&GT; addImage(currImg);
一旦将其存储在矢量中,我就放弃了它的所有权。 currImg = NULL;
template <class _Type>
_Type* ChAutoPtr<_Type>::giveUpOwnership()
{
#ifdef VERIFY_WITH_SHADOW_STACK
// Check to see if the last auto-ptr is the one that is being
// given up!!!
if (m_pInstance != NULL)
{
void* pTop = g_cleanupStackShadow.top();
ChASSERT(pTop == m_pInstance);
g_cleanupStackShadow.pop();
}
#endif /* _DEBUG */
_Type* pTmp = m_pInstance;
m_pInstance = NULL;
return pTmp;
}
答案 0 :(得分:2)
EXC_BAD_ACCESS意味着您要么(1)将未初始化的对象添加到向量中,要么(2)它的生命很短并且在调用getImage()之前它不再存在。您可以尝试启用NSZombies或验证添加到矢量的图像的寿命和范围。最好尝试使用智能指针(例如shared_ptr)。