2015年7月16日 星期四

[C] assert

     
   維護(assertion)敘述


        當自己寫的函式庫要提供他人使用時,適當的利用維護敘述,可以建立安全的使用
        介面,避免他人因為使用不當,而造成不可預期的後果。
        C 語言有自己的維護函式- assert() ,使用方法如下:

           assert(total < 1000);

        當程式執行到該行時,若 total < 1000 則程式可以繼續執行;若
        total >= 1000 ,則會秀出維護錯誤訊息的字串,並結束程式。
        維護字串包含有:判斷式子、程式檔名及該行的行號。
       緊記使用前要引入前置檔 assert.h
   
--------------------------------------------------------------------------------------------------

   Advanced example:
 

  1. #include <stdio.h>
  2. #include <assert.h>
  3. #define TRUE 1
  4. #define FALSE 0
  5. int
  6. find_char( char **strings, int value )
  7. {
  8. assert( strings != NULL );
  9. /*
  10. ** For each string in the list ...
  11. */
  12. while( *strings != NULL ){
  13. /*
  14. ** Look at each character in the string to see if
  15. ** it is the one we want.
  16. */
  17. while( **strings != '\0' ){
  18. if( *(*strings)++ == value )
  19. return TRUE;
  20. }
  21. strings++;
  22. }
  23. return FALSE;
  24. }

沒有留言:

張貼留言