abort
来自cppreference.com
该页由英文版wiki使用Google Translate机器翻译而来。
该翻译可能存在错误或用词不当。鼠标停留在文本上可以看到原版本。你可以帮助我们修正错误或改进翻译。参见说明请点击这里. |
在头文件 <stdlib.h> 中定义
|
||
void abort(); |
||
SIGABRT
导致程序异常终止,除非被捕获的信号传递给信号处理程序和处理程序不返回.原文:
Causes abnormal program termination unless
SIGABRT
is being caught by a signal handler passed to signal and the handler does not return.不被调用函数,传递给
atexit()
。无论是开放资源,如文件,是实现定义的。实现自定义的状态返回到主机环境中,表示不成功的执行. 原文:
Functions, passed to
atexit()
are not called. Whether open resources such as files are closed is implementation defined. Implementation defined status is returned to the host environment that indicates unsuccessful execution. 目录 |
[编辑] 参数
(无)
[编辑] 返回值
(无)
[编辑] 示例
本章尚未完成 原因:暂无示例 |
[编辑] 另请参阅
引发正常的程序终止并清理 (函数) | |
注册一个函数使其在调用exit()时被调用 (函数) | |
(C99) |
引发正常的程序终止但不完全清理 (函数) |
C++ documentation for abort
|