show/hide this revision's text 2 Improved clarity, grammar, punctuation and formatting.

Microsoft VC++ in debug mode shows memory leaks, although it doesn't show where your leaks are.

If you are using C++ you can never use explicitly you can always avoid using new , explicitly: you have all vector, string, auto_ptr auto_ptr and shared_ptr shared_ptr in your arsenal.

When using of new is unavoidable, try to hide it in constructor(destructor for delete), a constructor (and hide delete in a destructor); the same works for 3rd party APIAPIs.

    Post Made Community Wiki by Community
show/hide this revision's text 1

Microsoft VC++ in debug mode shows memory leaks, although it doesn't show where your leaks are.

If you are using C++ you can never use explicitly new, you have all vector, string, auto_ptr and shared_ptr in your arsenal.

When using of new is unavoidable try to hide it in constructor(destructor for delete), same works for 3rd party API.