代码搜索:except
找到约 10,000 项符合「except」的源代码
代码结果 10,000
www.eeworm.com/read/374083/9421565
h except.h
//$$ except.h Exception handling classes
// A set of classes to simulate exceptions in C++
//
// Partially copied from Carlos Vidal's article in the C users' journal
/
www.eeworm.com/read/374083/9421578
cxx except.cxx
//$$except.cxx Exception handler
#define WANT_STREAM // include.h will get stream fns
#include "include.h" // include standard files
www.eeworm.com/read/366268/9821922
dni except.dni
[Interrupts]
Enabled=1
[MemoryMap]
Enabled=0
TypeVolition=1
UnspecRange=1
ActionState=1
[DisAssemblyWindow]
NumStates=_ 1
State 1=_ 1
[State Storage]
Control Register=771
[Sequencer]
Cont
www.eeworm.com/read/365329/9869462
c except.c
#include
#include "Exception.h"
int main ()
{ void * a = new(Exception()), * b = new(Exception());
cause(-1); puts("caused -1");
switch (catch(a)) {
case 0:
switch (catch(b)) {
c