代码搜索:except
找到约 10,000 项符合「except」的源代码
代码结果 10,000
www.eeworm.com/read/229812/4739062
c except42.c
#include "fail.h"
static int zz;
struct T : _CD {
T();
~T();
};
T::T(){++zz;}
T::~T(){--zz;}
struct A : _CD {
A();
~A();
};
A::A(){++zz;}
A::~A(){--zz;}
short
www.eeworm.com/read/229812/4739079
c except25.c
#include "fail.h"
//#if defined( M_I86 ) || defined( M_I386 )
#include
// stack corrupted message
int main()
{
String input("test.cpp");
try {
int a = 3;
www.eeworm.com/read/229812/4739086
c except33.c
#include "fail.h"
struct B : _CD {
char *n;
B(char*n) : n(n) {
}
};
struct D : B {
D(char*n) : B(n) {
}
};
int watch;
struct W {
int s;
W( int s ) : s(s)
www.eeworm.com/read/229812/4739097
c except06.c
#include "fail.h"
#include
typedef char T0;
typedef unsigned char T1;
typedef signed char T2;
typedef enum E1 { a,b,c } T3;
typedef enum E2 { d,e,f } T4;
void throw_something( int
www.eeworm.com/read/229812/4739104
c except20.c
#include "fail.h"
struct xa { xa(); int x; };
xa::xa() : x(0xaaaa) {
}
struct xb { xb(); int x; };
xb::xb() : x(0xbbbb) {
}
struct xc { xc(); int x; };
xc::xc() : x(0xcccc) {
}
int seq;
www.eeworm.com/read/229812/4739111
c except03.c
#include "fail.h"
// 94/08/05 -- J.W.Welch -- disabled for medium model (need to upgrade
// typesig for function pointers)
#include
#include
int
www.eeworm.com/read/229812/4739117
c except11.c
#include "fail.h"
#include
#include
struct x0 {
static int count;
x0() { ++count; }
x0( x0 const & ) { ++count; }
~x0() { --count; }
};
struct x1 : x0 {
www.eeworm.com/read/229812/4739129
c except08.c
#include "fail.h"
#include
unsigned i_ctors;
unsigned s_ctors;
typedef int exception;
struct I {
int x;
I();
~I();
};
struct S {
I x;
S( const char *
www.eeworm.com/read/229812/4739140
c except04.c
#include "fail.h"
// Revisions:
//
// 93/11/01 -- J.W.Welch -- removed test for throw of zero (standard
// says only exact member-ptr conversions are
//
www.eeworm.com/read/229812/4739143
c except02.c
#include "fail.h"
// Revisions:
//
// 93/11/01 -- J.W.Welch -- removed test for throw of zero (standard
// says only exact member-ptr conversions are
//