std::perror
来自cppreference.com
该页由英文版wiki使用Google Translate机器翻译而来。
该翻译可能存在错误或用词不当。鼠标停留在文本上可以看到原版本。你可以帮助我们修正错误或改进翻译。参见说明请点击这里. |
在头文件 <cstdio> 中定义
|
||
void perror( const char *s ); |
||
打印到stderrnull结尾的字符串的内容所指向的
s
(除非s
是一个空指针),其次是两个字符": ",其次是实现定义的错误消息描述当前存储在系统变量中的错误代码errno(std::strerror(errno)的输出相同的),其次是'\n'.原文:
Prints to stderr the contents of the null-terminated character string pointed to by
s
(unless s
is a null pointer), followed by the two characters ": ", followed by the implementation-defined error message describing the error code currently stored in the system variable errno (identical to the output of std::strerror(errno)), followed by '\n'.目录 |
[编辑] 参数
s | - | 指针指向一个空结束的字符串说明消息
原文: pointer to a null-terminated string with explanatory message |
[编辑] 返回值
(无)
[编辑] 示例
输出:
log(-1) failed: Numerical argument out of domain
[编辑] 另请参阅
宏扩展到本地POSIX兼容线程错误号variable
(宏变量) 原文: macro which expands to POSIX-compatible thread-local error number variable (宏变量) | |
返回一个给定的错误代码的文本版本 原文: returns a text version of a given error code (函数) | |
C documentation for perror
|