exit c+_C / C ++中的exit(0)vs exit(1)与示例

exit c+

exit() is a library function in C/C++ programming language, it is used to terminate the calling process (function) immediately i.e. we can say it is used for the normal program termination and also perform the several cleanup steps.

exit()是C / C ++编程语言中的一个库函数,它用于立即终止调用进程(函数),即可以说它用于正常程序终止并执行几个清理步骤。

Syntax:

句法:

void exit(int status);

Parameter(s): status – defines the exit status.

参数: status –定义退出状态。

There are two status that we can define,

我们可以定义两种状态,

ValueMacroDescription
0EXIT_SUCCESSIt defines that the termination is on the success of the program.
1EXIT_FAILUREIt defines that the termination is on the failure of the program.
巨集 描述
0 EXIT_SUCCESS 它定义了程序成功的终止。
1个 EXIT_FAILURE 它定义终止是在程序失败时进行的。

Return value: The return type of the function is void, it returns nothing.

返回值:函数的返回类型为void ,不返回任何内容。

1) exit(0) or exit(EXIT_SUCCESS)

1)退出(0)或退出(EXIT_SUCCESS)

exit(0) is used to terminate the program by specifying the successful execution of the program.

exit(0)用于通过指定程序的成功执行来终止程序。

Syntax:

句法:

exit(0);

2) exit(1) or exit(EXIT_FAILURE)

2)退出(1)或退出(EXIT_FAILURE)

exit(1) is used to terminate the program by specifying the successful execution of the program.

exit(1)用于通过指定程序的成功执行来终止程序。

Syntax:

句法:

exit(1);

Example 1:

范例1:

Here, we are reading two numbers and then dividing them, if the second number is 0 then exiting the program using exit(1) and if the second number is not 0 then performing the division operation and exiting the program using exit(0).

在这里,我们正在读取两个数字,然后将它们相除,如果第二个数字为0,则使用exit(1)退出程序;如果第二个数字不为0,则执行除法运算,然后使用exit(0)退出程序。

// C++ program to demonstrate the
// example of exit(0) and exit(1)
#include <iostream>
using namespace std;
int main()
{
int a;
int b;
cout << "Enter divisor  (value of a): ";
cin >> a;
cout << "Enter dividend (value of b): ";
cin >> b;
cout << "a: " << a << endl;
cout << "b: " << b << endl;
if (b == 0) {
cout << "Dividend must not be 0..." << endl;
// EXIT_FAILURE
exit(1);
}
cout << a << "/" << b << " : " << (float)a / (float)b << endl;
// EXIT_SUCCESS
exit(0);
}

Output:

输出:

RUN 1:
Enter divisor  (value of a): 10
Enter dividend (value of b): 3
a: 10
b: 3
10/3 : 3.33333
RUN 2:
Enter divisor  (value of a): 10
Enter dividend (value of b): 0
a: 10
b: 0
Dividend must not be 0...

Example 2:

范例2:

Here, we are opening a file in read-only mode, if the file doe not exit then exiting the program using exit(1), and file exists then closing it and exiting the program using exit(0).

在这里,我们以只读模式打开文件,如果文件没有退出,则使用exit(1)退出程序,并且文件存在,然后将其关闭并使用exit(0)退出程序。

// C++ program to demonstrate the
// example of exit(0) and exit(1)
#include <stdio.h>
#include <stdlib.h>
int main()
{
FILE* fPtr;
// opening the file
fPtr = fopen("hello1.txt", "r");
// checking whether file exists or not
if (fPtr == NULL) {
printf("oops, file does not exist...");
// EXIT_FAILURE
exit(1);
}
printf("File opened successfully...");
// clsoing the file
fclose(fPtr);
// EXIT_SUCCESS
exit(0);
}

Output:

输出:

oops, file does not exist...

出口(0)和出口(1)之间的区别 (Difference between exit(0) and exit(1))

exit(0)exit(1)
It is used to terminate the program normally by specifying that operation is successful.It is also used to terminate the program normally by specifying that operation is not successful.
The syntax is,
exit(0);

The syntax is,
0 is the value of EXIT_SUCCESS. Thus, we can also use exit(EXIT_SUCCESS) instead of exit(0).1 is the value of EXIT_FAILURE. Thus, we can also use exit(EXIT_FAILURE) instead of exit(1).
exit(0) is fully portable.exit(1) is not fully portable.
exit(0) defines the clean exit without any error.exit(1) defines that there was an error in the program and the program is terminated.
退出(0) 出口(1)
通过指定操作成功,它通常用于终止程序。 通过指定操作不成功,它也可用于正常终止程序。
语法是
exit(0);

语法是
0EXIT_SUCCESS的值。 因此,我们也可以使用exit(EXIT_SUCCESS)代替exit(0) 1EXIT_FAILURE的值。 因此,我们也可以使用exit(EXIT_FAILURE)代替exit(1)
exit(0)是完全可移植的。 exit(1)并非完全可移植。
exit(0)定义干净出口,没有任何错误。 exit(1)定义程序中存在错误,并且程序终止。

翻译自: https://www.includehelp.com/cpp-tutorial/exit-0-vs-exit-1-in-c-cpp-with-examples.aspx

exit c+

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/541623.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

校园计算机网络系统,校园计算机网络系统

一、校园网的基本概念基本功能&#xff1a;数据交换、资源共享&#xff0c;这里所指的数据包括各种信息&#xff0c;基本组成和结构&#xff1a;基本网络由网络网络的分类&#xff1a;有多种分类方法&#xff0c;按规模可分为局域网、区域网、&127;广域网。局域网服务范围一…

mc有什么红石机器人_我的世界10月考试!来测测你的MC成绩吧~

考试规则&#xff1a;本次考试为闭卷考试&#xff0c;考生需要在30分钟内完成试卷。试卷总分为100分&#xff0c;其中包括单项选择题50分&#xff0c;多项选择题20分&#xff0c;判断题30分。考试内容包括《我的世界》手游1.11.0及以上版本在不添加任何模组的情况下的所有游戏内…

130、 Android OkHttp完全解析(转载)

完全解析&#xff1a;http://blog.csdn.net/lmj623565791/article/details/47911083 从原理角度解析http文件上传 http://blog.csdn.net/lmj623565791/article/details/23781773 https://github.com/hongyangAndroid/okhttputils

json转string示例_C.示例中的String.Copy()方法

json转string示例C&#xff03;String.Copy()方法 (C# String.Copy() Method) String.Copy() method is used to copy a string to new string object, it returns a new instance of String with the same value as given string. String.Copy()方法用于将字符串复制到新的字符…

自定义分页 html,MVC 自定义HtmlHelper帮助类型之分页

方法一&#xff1a;在项目中增加App_Code文件夹&#xff0c;新增一个MyHtmlper.cshtml视图文件写入代码&#xff1a;helper Pagger(int pageIndex, int pageCount){for (int i 1; i < pageCount; i){if (i ! pageIndex){(i)}else{i}}}新增一个HomeControllerpublic class H…

vue 对象继承_Vue2.0中组件的继承与扩展是什么

Vue2.0中组件的继承与扩展是什么发布时间&#xff1a;2020-12-07 14:04:09来源&#xff1a;亿速云阅读&#xff1a;100作者&#xff1a;小新小编给大家分享一下Vue2.0中组件的继承与扩展是什么&#xff0c;相信大部分人都还不怎么了解&#xff0c;因此分享这篇文章给大家参考一…

stack示例_C.示例中的Stack.Clone()方法

stack示例C&#xff03;Stack.Clone()方法 (C# Stack.Clone() method) Stack.Clone() method is used to create a shallow copy of the stack. Stack.Clone()方法用于创建堆栈的浅表副本。 Syntax: 句法&#xff1a; Object Stack.Clone();Parameters: None 参数&#xff1a…

简述计算机图形的图形应用主要有哪些,5计算机图形学考试简答题复习.doc

5计算机图形学考试简答题复习计算机图形学考试简答题复习1、简述计算机动画的概念&#xff0c;它经历了哪几个阶段的发展&#xff1f;(2分)计算机动画是指采用图形与图像的处理技术&#xff0c;借助于编程或动画制作软件生成一系列的景物画面&#xff0c;其中当前帧是前一帧的部…

在图片中选定任意凸多边形制作掩膜程序MATLAB

function S get_convex_S(C,vx,vy) %该函数实现的功能为指定图像中多边形的顶点&#xff0c;返回属于该凸多边形中的所有像素点 %xv&#xff0c;yv为顶点坐标按照顺时针或者逆时针。vx(1) xv(end); yv(1) yv(end) %输入的C是结构&#xff0c;vx vy是数组存的是顶点坐标。 %输…

js console 输出到文件_Node.js核心入门

正文核心模块是Node.js的心脏&#xff0c;主要是有一些精简高效的库组成(这方面和Python有很大的相似之处)&#xff0c;为Node.js提供了基础的API。主要内容包括&#xff1a;Node.js核心入门(一)全局对象常用工具事件机制Node.js核心入门(二)文件系统访问HTTP服务器与客户端全局…

scala 当前日期_如何在Scala中检查当前日期和时间?

scala 当前日期Scala is a general-purpose programming language, which is majorly used for data manipulation. It has libraries and support for almost all different utilities that are important. One of the important things that are required while programming …

计算机科学考试大纲,计算机科学与技术考试大纲.doc

计算机科学与技术考试大纲计算机科学与技术专业本专业的专业课程考试为“计算机软件基础”和“计算机硬件基础”两门课程的组合试卷&#xff0c;卷面总分200分&#xff0c;时间150分钟&#xff0c;考试方式为笔试。考试可携带计数器&#xff0c;但禁止携带文曲星、商务通等带有…

eclipse中项目内存溢出问题

2019独角兽企业重金招聘Python工程师标准>>> SpringBoot项目热启动Perm区内存溢出。 Failed to instantiate [org.springframework.orm.jpa.JpaVendorAdapter]: Factory method jpaVendorAdapter threw exception; nested exception is java.lang.OutOfMemoryErro…

云盾idaas登陆_移动端扫码登录IDaaS平台

{"moduleinfo":{"card_count":[{"count_phone":1,"count":1}],"search_count":[{"count_phone":10,"count":10}]},"card":[{"des":"刷脸门禁通行系统前端接入人脸AI赋能的人脸…

express rest_Express / Node中用于REST API的邮递员工具

express restWhen dealing with routes (like in express), we may use any of the REST verbs and at times, the browser is limited to facilitate testing the routes/REST API. 在处理路由时(如快速表达)&#xff0c;我们可以使用任何REST动词&#xff0c;有时浏览器会受到…

我们在使用计算机时,不能做什么?,11秋季学期计算机应用技术基础学习周期_01任务-在线作业[1]1...

1.选购显示器应优先考虑显示器的( B )性能指标选A.显示器的防辐射指标B. 显示器的带宽C. 显示器的刷新率D. 显示器的尺寸2. 一个声音文件采用双声道8位采样精度、22K采样频率录音&#xff0c;它的大小是5M&#xff0c;如果采用单声道16位采样精度、44K采样频率录音&#xff0c;…

按一个按钮会随机死人_《饥荒》那些年坑爹的随机地图,最后一个简直笑死人...

饥荒是一款随机性很强的游戏&#xff0c;这也是饥荒这款游戏相当耐玩的主要原因。别的不说小编敢保证随机开图的话你绝对找不到两张一模一样的地图。地图上的资源也会大不相同。不管是稀有的各种奇遇还是基础资源的刷新数量都是完全不同的。当然对于一些基础资源玩家们并没有多…

介词at_介词逻辑| 离散数学

介词at介词或陈述 (Preposition or Statement) A preposition is a definition sentence which is true or false but not both. 介词是一个定义语句&#xff0c;它是对还是错&#xff0c;但不能同时包含两者。 For example: The following 8 sentences, 例如&#xff1a;以下…

职称计算机提前考试试卷,职称计算机考试多项选择考试卷模拟考^试题

《职称计算机考试多项选择考试卷模拟考^试题》由会员分享&#xff0c;可在线阅读&#xff0c;更多相关《职称计算机考试多项选择考试卷模拟考^试题(8页珍藏版)》请在人人文库网上搜索。1、姓名&#xff1a;________________ 班级&#xff1a;________________ 学号&#xff1a;…

形象易懂讲解算法I——小波变换

https://zhuanlan.zhihu.com/p/22450818?referdong5 最早发于回答&#xff1a;能不能通俗的讲解下傅立叶分析和小波分析之间的关系&#xff1f; - 咚懂咚懂咚的回答现收入专栏。从傅里叶变换到小波变换&#xff0c;并不是一个完全抽象的东西&#xff0c;可以讲得很形象。小波变…