"map clear"에 해당되는 글 - 1건
Post
map<int, GameObject*> gameObjects;
// 동적 할당 해제
for (map<int, GameObject*>::iterator it = gameObjects.begin(); it!= gameObjects.end(); it++) {
delete it->second;
}
gameObjects.clear();
c++ stl Map 동적할당 해제 예제
이터레이터에서 두번째 인자를 해제 해주고 map전체 clear
'이전게시판 > C, C++' 카테고리의 다른 글
How to TCHAR to string C++ (GetCurrentDirectory) (0) | 2024.10.07 |
---|---|
Visual studio 단축키 (0) | 2024.10.03 |
C++ csv 파일 읽기 (0) | 2024.09.25 |
c++ 전처리기 region 이란 (0) | 2018.09.30 |
pragma message 출력창에 내용 출력 (0) | 2018.08.29 |
Cygwin 설치 설정 방법 (0) | 2018.07.27 |
서버 파싱 중 이진수 데이터 조합 (0) | 2018.06.20 |
flyweight(플라이웨이트) 패턴 (0) | 2018.06.16 |