try-catch-1.mm

来自「Mac OS X 10.4.9 for x86 Source Code gcc」· MM 代码 · 共 43 行

MM
43
字号
/* APPLE LOCAL file mainline *//* Test if the compiler accepts @throw / @try..@catch..@finally syntax.  *//* Developed by Ziemowit Laski <zlaski@apple.com>.  *//* { dg-options "-fobjc-exceptions" } *//* { dg-do compile } */#include <objc/Object.h>#include <stdio.h>#include <setjmp.h>@interface Frob: Object@end@implementation Frob: Object@endstatic int exc_control = 0;int proc() {  if(exc_control) {    printf ("Throwing (%d)... ", exc_control);    @throw [Frob new];  }  return 1;}int foo(){        @try {                return proc();        }        @catch (Frob* ex) {		if(exc_control > 1) {		  printf("Rethrowing (%d)... ", exc_control);		  @throw;		}		return 0;        }	@finally {		printf("In @finally block (%d)... ", exc_control);	}}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?