|
-
September 30th, 2002, 08:50 PM
#1
Pointer Elements & STL Containers :: STL
Hi.
Do delete STL functions such as remove() and erase() calls a class destructor if the element is a pointer to an object? For example, consider a vector of pointers to ClassX objects and a list of pointers to ClassX objects..
code:--------------------------------------------------------------------------------
std::vector<ClassX *> sTextVec;
ClassX *pCX;
sTextVec.push_back(pCX);
...
// Now you need to deallocate memory from pText.
// Do functions such as remove() and erase() call ClassX
// destructor, or do you have to delete them explicitly?
--------------------------------------------------------------------------------
Thanks,
Kuphryn
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|