c++ abort 函数_C ++中带有示例的abort()函数
c++ abort 函數(shù)
C ++ abort()函數(shù) (C++ abort() function)
abort() function is a library function of cstdlib header. It is used to abort the current process. For the abnormal program termination – we can use abort() function.
abort()函數(shù)是cstdlib標頭的庫函數(shù)。 用于中止當前進程。 對于異常的程序終止–我們可以使用abort()函數(shù) 。
Syntax of abort() function:
abort()函數(shù)的語法:
C++11:
C ++ 11:
[[noreturn]] void abort() noexcept;Parameter(s):
參數(shù):
None
沒有
Return value:
返回值:
It does not return anything.
它不返回任何東西。
Example:
例:
abort();C ++代碼來演示abort()函數(shù)的示例 (C++ code to demonstrate the example of abort() function)
// C++ code to demonstrate the example of // abort() function#include <iostream> #include <cstdlib> using namespace std;// main() section int main() {float x, y;float result;while (1) {cout << "Input the value of x: ";cin >> x;cout << "Input the value of y: ";cin >> y;if (y == 0) {cout << "Value of Y cannot be 0" << endl;abort();}result = (float)x / (float)y;cout << x << "/" << y << ": " << x / y << endl;}return 0; }Output
輸出量
Input the value of x: 10 Input the value of y: 2 10/2: 5 Input the value of x: 10 Input the value of y: 3 10/3: 3.33333 Input the value of x: 5 Input the value of y: 3 5/3: 1.66667 Input the value of x: 6 Input the value of y: 0 Value of Y cannot be 0 Aborted (core dumped)Reference: C++ abort() function
參考: C ++ abort()函數(shù)
翻譯自: https://www.includehelp.com/cpp-tutorial/abort-function-with-example.aspx
c++ abort 函數(shù)
總結(jié)
以上是生活随笔為你收集整理的c++ abort 函数_C ++中带有示例的abort()函数的全部內(nèi)容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: java system.load()_S
- 下一篇: css 中文文字字体_使用CSS的网络字