资 源 简 介
This module overloaded the default new & delete operators.And it can help programmer to trace memory allocating & freeing.
# Features: #
1. Tracing memory allocating & freeing with giving useful information.
1. Automatically check memory leak and give warnings when the program exits.
1. Checking memory leak manually on runtime.
1. The project is in Public Domain.
# How to use: #
1. Include "memcheck.h" where you want to check memory leak.
1. Compile your sources & memcheck.cpp
1. Link memcheck.cpp with your program
NOTE:"memcheck.h" must be included after other system headers:
#include #include "memcheck.h"//Right----#include "memcheck.h" //WRONG!#include
It will be appreciate if you give me some feedbacks.