在 extern C 中使用 _attribute__ ((nothrow)) 有意义吗?
Does it make sense to use _attribute__ ((nothrow)) inside extern C?
我有一些从 C++ 调用的 C 代码。
header 类似于以下内容:
#ifndef CLibH
#define CLibH
#ifdef __cplusplus
extern "C" {
#endif
//C API
void foo(void);
// ...
#ifdef __cplusplus
}
#endif
#endif
因为我已经在使用 extern C
,
添加 nothrow
编译器属性有什么好处吗?
#ifndef CLibH
#define CLibH
#ifdef __cplusplus
extern "C" {
#endif
//C API
void foo(void) __attribute__((nothrow));
// ...
#ifdef __cplusplus
}
#endif
#endif
extern C
是否使这个多余?
在这种情况下应用它还有优势吗?
是的,确实如此。来自 gcc 文档:
For example, most functions in the standard C library can be
guaranteed not to throw an exception with the notable exceptions of
qsort and bsearch that take function pointer arguments.
我有一些从 C++ 调用的 C 代码。
header 类似于以下内容:
#ifndef CLibH
#define CLibH
#ifdef __cplusplus
extern "C" {
#endif
//C API
void foo(void);
// ...
#ifdef __cplusplus
}
#endif
#endif
因为我已经在使用 extern C
,
添加 nothrow
编译器属性有什么好处吗?
#ifndef CLibH
#define CLibH
#ifdef __cplusplus
extern "C" {
#endif
//C API
void foo(void) __attribute__((nothrow));
// ...
#ifdef __cplusplus
}
#endif
#endif
extern C
是否使这个多余?
在这种情况下应用它还有优势吗?
是的,确实如此。来自 gcc 文档:
For example, most functions in the standard C library can be guaranteed not to throw an exception with the notable exceptions of qsort and bsearch that take function pointer arguments.