當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


C語言 abort()用法及代碼示例



描述

C庫函數void abort(void)中止程序執行並直接從調用位置出來。

聲明

以下是 abort() 函數的聲明。

void abort(void)

參數

  • NA

返回值

此函數不返回任何值。

示例

下麵的例子展示了 abort() 函數的用法。

#include <stdio.h>
#include <stdlib.h>

int main () {
   FILE *fp;
   
   printf("Going to open nofile.txt\n");
   fp = fopen( "nofile.txt","r" );
   if(fp == NULL) {
      printf("Going to abort the program\n");
      abort();
   }
   printf("Going to close nofile.txt\n");
   fclose(fp);
   
   return(0);
}

讓我們編譯並運行上麵的程序,當它嘗試打開時將產生以下結果nofile.txt文件,該文件不存在 –

Going to open nofile.txt                                                    
Going to abort the program                                                  
Aborted (core dumped)

相關用法


注:本文由純淨天空篩選整理自 C library function - abort()。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。