IOS 階段學習第24天筆記(Block的介紹),ios第24天

來源:互聯網
上載者:User

IOS 階段學習第24天筆記(Block的介紹),ios第24天

IOS學習(OC語言)知識點整理

一、Block 的介紹  

1)概念: block 是一種資料類型,類似於C語言中沒有名字的函數,可以接收參數,也可以傳回值與C函數一樣被調用

     封裝一段代碼 可以在任何地方調用 block 也可以作為函數參數,以及函數傳回值  

2)Block 執行個體代碼  

 1 //定義了一個block類型MyBlock,MyBlock類型的變數只能指向帶兩個int的參數和返回int的代碼塊  2 typedef int (^MyBlock)(int,int);  3 //定義一個函數指標  4 int (*pMath)(int ,int);  5  6 int add(int a,int b)  7 {  8     return a+b;  9 }10 11 int sub(int a,int b) 12 { 13     return a-b; 14 }15 16 int main(int argc, const char * argv[]) { 17     @autoreleasepool { 18         pMath = add;//指向函數指標 19         //NSLog(@"sum: %d",pMath(2,3)); 20         pMath = sub; 21 22         //定義了一個block,block只能指向帶2個int的參數,返回int的代碼塊  23         //以^開始的為代碼塊,後面()是參數,然後{}代碼塊 24         int (^bloke1)(int,int) = ^(int a,int b){ 25             return a+b; 26         };27 28         int s = bloke1(3,5); 29         NSLog(@"s:%d",s);  30         //定義一個block指向沒有參數沒有傳回值的代碼塊(沒有參數,void可以省略) 31         void (^block2)(void) = ^{ 32             NSLog(@"programing is fun!"); 33         }; 34         block2(); 35         int (^block3)(int,int) = ^(int a,int b ){ 36             return a-b; 37 38         }; 39 40         //定義了MyBlock類型的變數,賦值代碼塊 41         MyBlock block4 = ^(int a,int b){ 42             return a*b; 43         };44 45         NSLog(@"%d",block4(2,5)); 46 47         int c = 10; 48         __block int d = 1; 49         //block塊可以訪問塊外的變數但是不能修改,如果需要修改,變數前加上__block修飾 50         void (^block5)(void) = ^{ 51             d = d+2; 52             NSLog(@"c:%d,d:%d",c,d); 53         }; 54         block5(); 55     } 56     return 0; 57 }

 

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.