C++ 中的_Exit() 函数会导致进程正常终止,而不执行任何常规清理任务。
既不调用任何对象析构函数,也不调用atexit 或at_quick_exit 注册的函数。文件等开放资源是否关闭由实现定义。
如果exit_code 为0 或EXIT_SUCCESS,则向主机环境返回成功终止状态。
如果exit_code 为EXIT_FAILURE,则将不成功的终止状态返回给主机环境。在其他情况下,返回实现定义的状态值。
_Exit()原型
void _Exit(int exit_code);
该函数在<cstdlib> 头文件中定义。
参数:
exit_code
:表示程序退出状态的整数值。
- 如果exit_code为零或EXIT_SUCCESS,则表示终止成功。
- 如果exit_code非零或EXIT_FAILURE,则表示失败。
返回:
_Exit() 函数不返回任何内容。
示例:_Exit() 函数如何工作?
#include <iostream>
#include <cstdlib>
using namespace std;
int main()
{
int exit_code;
cout << "Enter a value: ";
cin >> exit_code;
if (exit_code)
{
cout << "Exiting using _Exit";
_Exit(exit_code);
}
else
{
cout << "Exiting using exit";
exit(exit_code);
}
}
运行程序时,输出将是:
Enter a value: 5 Exiting using _Exit
相关用法
- C++ unordered_map cbegin用法及代码示例
- C++ map lower_bound()用法及代码示例
- C++ Unordered_multimap reserve()用法及代码示例
- C++ list assign()用法及代码示例
- C++ std::max()用法及代码示例
- C++ std::string::push_back()用法及代码示例
- C++ Array swap()用法及代码示例
- C++ valarray cos用法及代码示例
- C++ multimap key_comp()用法及代码示例
- C++ Deque erase()用法及代码示例
- C++ List cend()用法及代码示例
- C++ std::less_equal用法及代码示例
- C++ set rbegin()用法及代码示例
- C++ llround()用法及代码示例
- C++ getline(string)用法及代码示例
- C++ boost::algorithm::all_of()用法及代码示例
- C++ string::length()用法及代码示例
- C++ Unordered_map end()用法及代码示例
- C++ log2()用法及代码示例
- C++ Algorithm copy()用法及代码示例
注:本文由纯净天空筛选整理自 C++ _Exit()。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。