oc 代码块的使用

#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();
}

 

posted @ 2015-08-18 14:22  netcorner  阅读(477)  评论(0编辑  收藏  举报