代码搜索:CATCH

找到约 10,000 项符合「CATCH」的源代码

代码结果 10,000
www.eeworm.com/read/103960/15715806

c t_raw.c

#include #include "ourhdr.h" static void sig_catch(int); int main(void) { int i; char c; if (signal(SIGINT, sig_catch) == SIG_ERR) /* catch signals */ err_sys("signal(SIGINT) error
www.eeworm.com/read/100585/15870817

c t_raw.c

#include #include "ourhdr.h" static void sig_catch(int); int main(void) { int i; char c; if (signal(SIGINT, sig_catch) == SIG_ERR) /* catch signals */ err_sys("signal(SIGINT) error
www.eeworm.com/read/207991/4999920

mal tst308.mal

# exception variables are implicitly defined # by the catch statement. catch NotDefinedException:str; io.print("Shouldn't do this"); io.print(NotDefineException); exit NotDefinedException;
www.eeworm.com/read/217300/14969963

c p8-6.c

#include #include #include volatile sig_atomic_t keep_going = 1; void catch_alarm(int sig) { keep_going = 0; puts("catch alarm"); signal (sig, catch_alarm);
www.eeworm.com/read/470720/1445083

c inline2.c

// Test that inlining a destructor with a catch block doesn't confuse the // enclosing try block. // Special g++ Options: -O struct A { ~A() { try { throw 1; } catch (...) { } } }; int
www.eeworm.com/read/470693/1457029

c inline2.c

// Test that inlining a destructor with a catch block doesn't confuse the // enclosing try block. // Special g++ Options: -O struct A { ~A() { try { throw 1; } catch (...) { } } }; int
www.eeworm.com/read/190666/5172877

c inline2.c

// Test that inlining a destructor with a catch block doesn't confuse the // enclosing try block. // Special g++ Options: -O struct A { ~A() { try { throw 1; } catch (...) { } } }; int
www.eeworm.com/read/340665/3273530

c inline2.c

// Test that inlining a destructor with a catch block doesn't confuse the // enclosing try block. // Special g++ Options: -O struct A { ~A() { try { throw 1; } catch (...) { } } }; int
www.eeworm.com/read/440906/1775162

c inline2.c

// Test that inlining a destructor with a catch block doesn't confuse the // enclosing try block. // Special g++ Options: -O struct A { ~A() { try { throw 1; } catch (...) { } } }; int
www.eeworm.com/read/103461/15730822

h database.h

#define CATCHERROR(ptr,a) catch(_com_error &e)\ {\ ErrorHandler(e,m_ErrStr);\ ptr=NULL;\ return a;\ } #define CATCHERRGET catch(_com_error &e)\