堆異常檢測-MS-Visual Studio

來源:互聯網
上載者:User

標籤:異常   visual studio   crtcheckmemory   記憶體檢測   

  • 在向系統申請堆空間的時候,雖然程式員不知道所申請的堆空間的資料結構,但是系統或者啥(微軟可以知道)知道的,所以如果我們需要檢查堆的使用異常,需要藉助微軟提供的機制來檢堆的正常使用,從而發現在程式過程中出現的非法使用堆的情況,保證我們程式的高品質!
  • 這裡面最重要的函數莫過於_CrtCheckMemory(),該函數使用簡單,在需要測試堆異常的代碼的開始和結束端分別調用即可。具體例子如下所示:
    #include <stdio.h>#include <Windows.h>#include <assert.h>#include <crtdbg.h>struct tvt {inti;charc;chara[];};void Test(){char* p = new char[4];assert(_CrtCheckMemory());strcpy(p, "12345");assert(_CrtCheckMemory());}int main(){Test();return 0;}

  • 其運行結果會提示異常,選擇忽略之後,會顯示如下錯誤:
    // Assertion failed: _CrtCheckMemory(), file e:\code\win32\test1\main.cpp, line 17

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.