반응형
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
- TiKV
- Symbol
- 컴퓨터 강좌
- bash
- UNIX Internals
- UNIX
- 약어
- Programming
- 커널
- 포인터변수
- 전처리기
- FreeBSD
- go
- Windows via c/c++
- Preprocessor
- 포인터
- kernel
- getopts
- 한빛미디어
- Pointer
- TiDB
- newSQL
- Golang
- DBMS
- SQLite
- 함수포인터
- 긴옵션
- DBMS 개발
- OS 커널
- 구조와 원리
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로 가르키고 있던지 아니던지 무조건 메모리 누수라 결과를 내주지요.
반응형