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


C++ exit()用法及代碼示例


C++ exit() 函數

exit() 函數是 cstdlib 頭文件的庫函數。它用於終止調用進程,它接受狀態代碼/值(EXIT_SUCCESS 或 EXIT_FAILURE)並終止進程。例如 - 在處理文件時,如果我們打開一個文件並且文件不存在 - 在這種情況下,我們可以使用 exit() 函數終止進程。

exit() 函數的語法:

C++11:

    void exit (int status);

參數:

  • status- 代表退出狀態代碼。0或者EXIT_SUCCESS表示成功即操作成功,EXIT_FAILURE表示失敗,即操作沒有成功執行。

返回值:

這個函數的返回類型是void, 它不返回任何東西。

例:

    Function call:
    exit(EXIT_FAILURE);
    //or
    exit(EXIT_SUCCESS);

C++代碼演示exit()函數的例子

// C++ code to demonstrate the example of
// exit() function

#include <iostream>
#include <cstdlib>
using namespace std;

// main() section
int main()
{
    float n; // numerator
    float d; // denominator
    float result;

    cout << "Enter the value of numerator :";
    cin >> n;
    cout << "Enter the value of denominator:";
    cin >> d;

    if (d == 0) {
        cout << "Value of denominator should not be 0..." << endl;
        exit(EXIT_FAILURE);
    }

    cout << n << " / " << d << " = " << (n / d) << endl;

    return 0;
}

輸出

RUN 1:
Enter the value of numerator :10
Enter the value of denominator:0
Value of denominator should not be 0...

RUN 2:
Enter the value of numerator :10
Enter the value of denominator:3
10 / 3 = 3.33333

參考:C++ exit() 函數



相關用法


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