#import <UIKit/UIKit.h> #import "AppDelegate.h" int (^max)(int,int);//定义代码块,类似c的函数指针 typedef void (^SayHello)(); //指定一个类型的代码块; int main(int argc, char * argv[]) { //通过函数闭包的方式实现代码块 max=^(int a,int b){ return a>b?a:b; }; //调用代码块 printf("max is %d\n",max(12,13)); //定SayHello类型的代码块 SayHello sh=^(){ printf("Hello oc block\n"); }; sh(); }
时间: 2024-10-29 15:59:26