gpt4 book ai didi

c++ - 我是否需要一个 extern "C" block 来包含标准 POSIX C header ?

转载 作者:可可西里 更新时间:2023-11-01 14:58:52 26 4
gpt4 key购买 nike

我是否需要 extern "C"{} block 来在 C++ 程序中包含标准 C header 。只考虑在 C++ 中没有对应物的标准 C 头文件。

例如:

extern "C" {
#include <fcntl.h>
#include <unistd.h>
}

最佳答案

系统 C 头文件通常已经包含一个 extern "C" block ,由 #ifdef __cplusplus 保护。这样,函数在编译为 C++ 时会自动声明为 extern "C",您无需手动执行此操作。

例如在我的系统上 unistd.hfcntl.h__BEGIN_DECLS 开始并以 __END_DECLS 结束,它们是在 sys/cdefs.h 中定义的宏:

/* C++ needs to know that types and declarations are C, not C++.  */
#ifdef __cplusplus
# define __BEGIN_DECLS extern "C" {
# define __END_DECLS }
#else
# define __BEGIN_DECLS
# define __END_DECLS
#endif

关于c++ - 我是否需要一个 extern "C" block 来包含标准 POSIX C header ?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8087438/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com