このコードを考えてみましょう:
#include <vector>
void Example()
{
std::vector<TCHAR*> list;
TCHAR* pLine = new TCHAR[20];
list.push_back(pLine);
list.clear(); // is delete called here?
// is delete pLine; necessary?
}
各要素をlist.clear()
呼び出しますか?delete
つまり、前後にメモリを解放する必要がありlist.clear()
ますか?