반응형
Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- 컴퓨터 강좌
- Preprocessor
- kernel
- Golang
- 긴옵션
- newSQL
- bash
- OS 커널
- TiDB
- 전처리기
- FreeBSD
- Programming
- DBMS
- Pointer
- 약어
- 포인터
- SQLite
- UNIX
- 한빛미디어
- DBMS 개발
- 함수포인터
- 커널
- go
- Symbol
- 포인터변수
- TiKV
- UNIX Internals
- 구조와 원리
- getopts
- Windows via c/c++
Archives
- Today
- Total
sonumb
Check the Memory Leaks! 본문
Test 환경은 Visual Studio 2005 입니다.
#define _CRTDBG_MAP_ALLOC
#include <crtdbg.h>
#include <iostream>using namespace std;
int main( void )
{
int* pt;
cout<< " memory leaks? : "
<< (_CrtDumpMemoryLeaks() ? "true" : "false")
<< endl;
pt = new int[2];
cout<< " memory leaks? : "
<< (_CrtDumpMemoryLeaks() ? "true" : "false")
<< endl;
return 0;
}
결과 :
memory leaks? : false
memory leaks? : true
보시다 시피 로컬상에서 할당된 Dynamic 메모리는 무조건 메모리 누수라 봅니다.
즉, pointer로 가르키고 있던지 아니던지 무조건 메모리 누수라 결과를 내주지요.
반응형