std::abort
提供: cppreference.com
|
|
このページは、Google 翻訳を使って英語版から機械翻訳されました。
翻訳には誤りや奇妙な言い回しがあるかもしれません。文章の上にポインタをおくと、元の文章が見れます。誤りを修正して翻訳を改善する手助けをしてください。翻訳についての説明は、ここをクリックしてください。 |
| ヘッダ <cstdlib> で定義
|
||
| [[noreturn]] void abort(); |
(C++11およびそれ以降) | |
| void abort(); |
(C++11以前) | |
Causes abnormal program termination unless SIGABRT is being caught by a signal handler passed to signal and the handler does not return.
Destructors of variables with automatic, thread local and static ストレージは、期間 are not called. Functions, passed to atexit() are also 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.
目次 |
[編集] パラメータ
(なし)
[編集] 値を返します
(なし)
[編集] 例外
[編集] 例
| This section is incomplete Reason: no example |
[編集] 参照
| クリーンアップと、プログラムの正常終了を引き起こす Original: causes normal program termination with cleaning up The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. (関数) | |
| exit()呼び出しのときに呼び出される関数を登録します Original: registers a function to be called on exit() invocation The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. (関数) | |
| (C++11) |
完全にクリーンアップせずに、プログラムの正常終了を引き起こす Original: causes normal program termination without completely cleaning up The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. (関数) |
| abort の C言語リファレンス
| |

