block和指针函数

block代码块和指针函数在定义上只有一个符号的细微差别,至于灵活性和使用场景,具体问题具体分析,block比较灵活。

#import <Foundation/Foundation.h>

#import "Student.h"

int sumAb(int a,int b){

    return a+b;

}

void testBlock(){

    //定义一个block类型

    typedef int (^sum) (int,int);

    //定义了一个指针,指向函数

    typedef int (*sump) (int,int);

    //定义了一个block变量

    sum su=^(int a,int b){

        return a+b;

    };  

    int k=su(10,12);

    NSLog(@"block测试值是%i",k);   

    //指向函数

    sump p=sumAb;

   // int ps=(*p)(12,12);

    int ps=p(25,10);

    NSLog(@"指针函数值%i",ps);

}


访问公共变量:

#import <Foundation/Foundation.h>

@protocol Study;

@protocol Learn;

@interface Student : NSObject<Study,Learn>{

    @public

    int age;

}

@property (nonatomic,assign) int no;

@end


   Student *stu=[[[Student alloc]init]autorelease];

        //直接访问公共变量

       int age= stu->age;

        //调用set方法

        stu.no=25;

        NSLog(@"age=%i",age);


总结:点语法都是在调用对象的方法,而不是直接访问成员变量。

发布了53 篇原创文章 · 获赞 3 · 访问量 13万+
發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章