当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


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++。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。