考虑C库中定义的以下函数:
void f(void (*callback)(int)) { callback(0); }
将从定义callback()
的C ++ 11程序中调用,可能会抛出异常,如下所示:
void callback(int) { /* can I throw ? */}
try {
f(callback);
} catch (...) {
/* can the exception be caught ? */
}
我的问题是:
f()
调用时抛出回调?如果没有,我/是否应该使用callback()
说明符声明noexcept
?答案 0 :(得分:1)
下面的源代码可以被编译。
exception.cpp:
extern "C"
void throwInCPP() {
throw 5;
}
main.c中
#include <stdio.h>
void throwInCPP();
void throwExp(void (*callback)()) {
callback();
}
int main() {
throwExp(throwInCPP);
return 0;
}
当它运行时,将抛出异常并且程序展开堆栈尝试找到一个catch块但它不能。然后中止发生:
#0 0x00007ffff7238d67 in raise () from /usr/lib/libc.so.6
#1 0x00007ffff723a118 in abort () from /usr/lib/libc.so.6
#2 0x00007ffff7b2e1f5 in __gnu_cxx::__verbose_terminate_handler() ()
from /usr/lib/libstdc++.so.6
#3 0x00007ffff7b2c076 in ?? () from /usr/lib/libstdc++.so.6
#4 0x00007ffff7b2c0c1 in std::terminate() () from /usr/lib/libstdc++.so.6
#5 0x00007ffff7b2c2d8 in __cxa_throw () from /usr/lib/libstdc++.so.6
#6 0x00000000004007fa in throwInCPP ()
#7 0x00000000004007bd in throwExp (callback=0x4007d4 <throwInCPP>) at main.c:6
#8 0x00000000004007cd in main () at main.c:11
我认为你总是可以调用一个在c中抛出一个预期的cpp函数,但你永远不能把一个catch块放在c中,因为它没有编译。
How is the C++ exception handling runtime implemented?这解释了异常在c ++中是如何工作的。
我真的不认为在c中抛出异常将是一件好事,因为你无法在&#34;正常&#34;中做任何事情。方式。