代码搜索:CATCH
找到约 10,000 项符合「CATCH」的源代码
代码结果 10,000
www.eeworm.com/read/440906/1775167
c catch14.c
// Copyright (C) 2001 Free Software Foundation, Inc.
// Contributed by Jakub Jelinek 2 May 2001
// Build don't link:
// Special g++ Options: -O1
void foo();
struct A {
A (int x
www.eeworm.com/read/440906/1775172
c catch12.c
// Copyright (C) 2000 Free Software Foundation, Inc.
// Contributed by Nathan Sidwell 24 May 2000
// we should be able to catch a base a virtual, provided it is accessible b
www.eeworm.com/read/440906/1775173
c catch4.c
// Copyright (C) 1999, 2000 Free Software Foundation, Inc.
// Contributed by Nathan Sidwell 29 Aug 1999
// We cannot catch an ambiguous base class. Check with a virtual public
// DAG
www.eeworm.com/read/440906/1775174
c catch8.c
// Copyright (C) 1999, 2000 Free Software Foundation, Inc.
// Contributed by Nathan Sidwell 6 Jun 1999
// We cannot catch an ambiguous base class.
// -- public,
www.eeworm.com/read/440906/1775178
c catch2.c
// Build don't link:
// Origin: Mike Danylchuk
typedef char TCHAR;
int main()
{
try {}
catch( TCHAR* Err ) {}
}
www.eeworm.com/read/440906/1775182
c catch13.c
// Copyright (C) 2001 Free Software Foundation, Inc.
// Contributed by Jakub Jelinek 2 May 2001
// Build don't link:
// Special g++ Options: -O2
struct A;
A *foo();
struct A {
www.eeworm.com/read/440906/1775186
c catch11.c
// Copyright (C) 2000 Free Software Foundation, Inc.
// Contributed by Nathan Sidwell 24 May 2000
// we should be able to catch a base a virtual, provided it is accessible b
www.eeworm.com/read/440906/1775193
c catch3.c
// Copyright (C) 1999, 2000 Free Software Foundation, Inc.
// Contributed by Nathan Sidwell 29 Aug 1999
// We cannot catch an ambiguous base class. Check with a non-virtual public
//
www.eeworm.com/read/425756/2003307
m try_catch.m
%初始化数组
a=[1 -3 2 5];
try
% 显示某个元素
index=input('Enter subscript of element to display: ');
disp(['a(' int2str(index) ') = ' num2str(a(index))] );
catch
%如果发现出现错误
disp(['Illegal subscr