程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> C語言 >> C >> C語言基礎知識 >> The Standard C Library for Linux

The Standard C Library for Linux

編輯:C語言基礎知識

  Part Six: <assert.h> Diagnostics for Programmers
   By James M. Rogers
  
   --------------------------------------------------------------------------------
  
   The last article was on <stdlib.h> Standard Library. This article is on <assert.h> Diagnostics for Programmers.
  
   I am assuming a knowledge of c programming on the part of the reader. There is no guarantee of accuracy in any of this information nor suitability for any purpose.
  
   If used properly assertions will allow programmers to mUCh more easily document and debug your code with no impact on runtime performance. Assertions are not meant to be used for production code as they cause the program to terminate with an error condition. Since assertions are never to be used in production code they are not useful in finding runtime errors such as a failure to allocate memory. You must still handle failed return conditions of all function calls the same as always.
  
   Instead, what assertions allow you to do is document the assumptions that you make as you program and allow you to debug the obvious logic errors that you have made. As you program around these logic errors you can modify your assertions to not die on errors that you are now handling.
  
   The example is rogers_example06.c :
  
   #include <stdio.h>
   #include <assert.h>
  
   /*
  
   This program is written to demonstrate the <stdlib.h> library.
  
   This program will demonstrate the assert function
  
   Written by James M. Rogers
  
   12 April 1999
  
   Released to the Public Domain on this date.
  
   */
  
   /*
  
   Compile this with the -DNDEBUG flag in order to _NOT_
  
   compile the assert statement.
  
   So all production boxes should compile with the -DNDEBUG flag.
  
   */
  
   main (){
  
   int i=1;
   int j=0;
   assert(j!=0);
   printf("%s ", i/j);
   }
  
   In this program I will demonstrate the use of assertions by using a simple program that asks for two numbers and then divides the first number by the second. Compile the program with the following:
  
   gcc -DNDEBUG rogers_example06.c -o assert
  
   and then run ./assert and try to divide by zero. The flag -NDEBUG will cause your assertion to generate no runtime code. This flag should be used in all production environements
  
   Your program will core dump with almost no indication of the problem. Now recompile the program with the following:
  
  
   gcc rogers_example06.c -o assert
  
   Now run the program again and again try to divide by zero. This time it should be much more apparrent what the problem is and very easy to locate the exact line that had the problem.
  
   As always, if you see an error in my documentation please tell me and I will correct myself in a later document. See corrections at end of the document to review corrections to the previous articles.
  
   Assertions
  
   #include <assert.h>
   void assert(int eXPression);
  
   From:www.Linuxgazette.com
 
  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved