gpt4 book ai didi

c++ - 在 extern C 中使用 _attribute__ ((nothrow)) 有意义吗?

转载 作者:塔克拉玛干 更新时间:2023-11-03 02:21:45 26 4
gpt4 key购买 nike

我有一些从 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++ - 在 extern C 中使用 _attribute__ ((nothrow)) 有意义吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39256563/

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