C++編程中的四個調試小技巧

來源:互聯網
上載者:User
1.調試標記

  適用預先處理#define定義一個或多個調試標記,在代碼中把調試部分使用#ifdef 和#endif 進行管理。當程式最終調試完成後,只需要使用#undef標記,調試代碼就會消失。常用的調試標記為DEBUG, 語句序列:

#define DEBUG

#ifdef DEBUG

調試代碼

#endif

  2.運行期間調試標記

  在程式運行期間開啟和關閉調試標記。通過設定一個調試bool標記可以實現。這對命令列啟動並執行程式更為方便。

  例如下面代碼

#include<iostream>
#include <string>
using namespace std;
bool debug =false;
int main(int argc,char*argv[])
{
 for(int i=0;i<argc;i++)
  if(string(argv[i])==“--debug=on“)
  debug = true;
  bool go=true;
  while(go)
  {
   if(debug)
   {
    調試代碼
   }else {}
  }
}

  3.把變數和運算式轉換成字串

  可是使用字串運算子來實現轉換輸出定義

#define PR(x) cout<<#x”=”<<x<<'/n'

  4.c語言的assert()

  該宏在<assert>中,,當使用assert時候,給他個參數,即一個判讀為真的運算式。前置處理器產生測試該斷言的代碼,如果斷言不為真,則發出一個錯誤資訊告訴斷言是什麼以及它失敗一會,程式會終止。

#include< assert>
using namsapce std;
int main()
{
 int i=100;
 assert(i!=100); //Fails
}
當調試完畢後在#include<assert>前加入#define NDEBUG即可消除紅產生的代碼
}

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.