c++ abort 函数_C ++中带有示例的abort()函数

c++ abort 函数

C ++ abort()函数 (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()函数cstdlib标头的库函数。 用于中止当前进程。 对于异常的程序终止–我们可以使用abort()函数

Syntax of abort() function:

abort()函数的语法:

C++11:

C ++ 11:

    [[noreturn]] void abort() noexcept;

Parameter(s):

参数:

  • None

    没有

Return value:

返回值:

It does not return anything.

它不返回任何东西。

Example:

例:

    abort();

C ++代码来演示abort()函数的示例 (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()函数

翻译自: https://www.includehelp.com/cpp-tutorial/abort-function-with-example.aspx

c++ abort 函数

  • 7
    点赞
  • 10
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值