ios nil、NULL和NSNull 的使用

來源:互聯網
上載者:User

nil用來給對象賦值(Objective-C中的任何對象都屬於id類型),NULL則給任何指標賦值,NULL和nil不能互換,nil用於類指標賦值(在Objective-C中類是一個對象,是類的meta-class的執行個體), 而NSNull則用於集合操作,雖然它們表示的都是空值,但使用的場合完全不同。

樣本如下:

  1. id object = nil;  
  2. // 判斷對象不為空白  
  3. if (object) {  
  4. }  
  5.       
  6. // 判斷對象為空白  
  7. if (object == nil) {  
  8. }  
  9.           
  10. // 數組初始化,空值結束  
  11. NSArray *array = [[NSArray alloc] initWithObjects:@"First", @"Second", nil];  
  12.   
  13. // 判斷數組元素是否為空白  
  14. NSString *element = [array objectAtIndex:2];  
  15. if ((NSNull *)element == [NSNull null]) {  
  16. }  
  17.   
  18. // 判斷字典對象的元素是否為空白  
  19. NSDictionary *dictionary = [NSDictionary dictionaryWithObjectsAndKeys:  
  20.     @"iPhone", @"First", @"iPad", @"Second", nil];  
  21. NSString *value = [dictionary objectForKey:@"First"];  
  22. if ((NSNull *)value == [NSNull null]) {  
  23. }  
相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.