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++。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。