转:perror和strerror的区别
Posted care2014
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了转:perror和strerror的区别相关的知识,希望对你有一定的参考价值。
概述:
perror和strerror都是C语言提供的库函数,用于获取与erno相关的错误信息,区别不大,用法也简单。最大的区别在于perror向stderr输出结果,而 strerror向stdout输出结果。
测试代码如下:
- #include <stdio.h>
- #include <string.h>
- #include <errno.h>
- int main(int argc, char* argv[])
- {
- FILE *fp;
- if ((fp = fopen(argv[1], "r")) == NULL)
- {
- perror("perror:");
- printf("strerror:%s\n", strerror(errno));
- }
- exit(0);
- }
运行结果:
以上是关于转:perror和strerror的区别的主要内容,如果未能解决你的问题,请参考以下文章
C/C++ Linux 出错处理函数(strerror 与 perror)
C/C++ Linux 出错处理函数(strerror 与 perror)