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() 函数
相关用法
- C++ expm1()用法及代码示例
- C++ exception::what()用法及代码示例
- C++ exception::bad_exception用法及代码示例
- C++ complex exp()用法及代码示例
- C++ exp2()用法及代码示例
- C++ equal()用法及代码示例
- C++ ecvt()用法及代码示例
- C++ unordered_map cbegin用法及代码示例
- C++ map lower_bound()用法及代码示例
- C++ list assign()用法及代码示例
- C++ std::max()用法及代码示例
- C++ std::string::push_back()用法及代码示例
- C++ multimap key_comp()用法及代码示例
- C++ Deque erase()用法及代码示例
- C++ std::less_equal用法及代码示例
- C++ set rbegin()用法及代码示例
- C++ llround()用法及代码示例
- C++ getline(string)用法及代码示例
- C++ boost::algorithm::all_of()用法及代码示例
- C++ string::length()用法及代码示例
注:本文由纯净天空筛选整理自 exit() Function with Example in C++。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。