C基礎知識(11):錯誤處理

C語言不提供對錯誤處理的直接支持,可是做爲一種系統編程語言,它以返回值的形式容許您訪問底層數據。在發生錯誤時,大多數的C或UNIX函數調用返回1或NULL,同時會設置一個錯誤代碼errno,該錯誤代碼是全局變量,表示在函數調用期間發生了錯誤。能夠在<error.h>頭文件中找到各類各樣的錯誤代碼。編程

C語言提供了perror()和strerror()函數來顯示與errno相關的文本消息。編程語言

 1 #include <stdio.h>
 2 #include <stdlib.h>
 3 #include <string.h>
 4 #include <errno.h>
 5 
 6 extern int errno;
 7 
 8 int main() {
 9 
10     int errnum;
11     FILE *pf = NULL;
12     pf = fopen("unexist.txt", "r");
13     if (pf == NULL) {
14         errnum = errno;
15         // 使用 stderr 文件流來輸出全部的錯誤
16         fprintf(stderr, "Error number: %d\n", errno); // Error number: 2
17         // perror()函數顯示您傳給它的字符串,後跟一個冒號、一個空格和當前 errno 值的文本表示形式
18         perror("Print error by 'perror' function"); // Print error by 'perror' function: No such file or directory
19         // strerror()函數,返回一個指針,指針指向當前errno值的文本表示形式。
20         fprintf(stderr, "Error: %s\n", strerror(errnum)); // Error: No such file or directory
21         //退出程序時,會帶有狀態值EXIT_FAILURE,被定義爲-1(stdlib.h)
22         printf("Exit failure.\n");
23         exit(EXIT_FAILURE);
24     } else {
25         fclose(pf);
26         //正常退出,會帶有狀態值EXIT_SUCCESS,被定義爲0(stdlib.h)
27         printf("Exit success.\n");
28         exit(EXIT_SUCCESS);
29     }
30 }
相關文章
相關標籤/搜索