Objective-C中NSArray和NSMutableArray的基本用法

來源:互聯網
上載者:User

標籤:

  1. /*---------------------NSArray---------------------------*/  
  2.        //建立數組  
  3.        NSArray *array1 = [NSArray arrayWithObject:@"1"];  
  4.        NSArray *array2 = [NSArray arrayWithObjects:@"1",@"2",@"3", nil];  
  5.        NSArray *array3 = [NSArray arrayWithArray:array2];  
  6.        NSLog(@"array1 = %@",array1);  
  7.        NSLog(@"array2 = %@",array2);  
  8.        NSLog(@"array3 = %@",array3);  
  9.          
  10.        //擷取數組內資料個數  
  11.        int count = [array2 count];  
  12.        NSLog(@"array2 size is %d",count);  
  13.          
  14.        //訪問數組內的資料  
  15.        NSString *str1 = [array2 objectAtIndex:0];  
  16.        NSLog(@"array2 first content is %@",str1);  
  17.          
  18.        //數組中插入資料   返回新的數組  
  19.        NSArray *array4 = [array3 arrayByAddingObject:@"4"];  
  20.        NSLog(@"array4 = %@",array4);  
  21.          
  22.        //數組內的資料以制定字元串連  
  23.        NSString *str2 = [array4 componentsJoinedByString:@","];  
  24.        NSLog(@"str2 = %@",str2);  
  25.          
  26.        //判斷數組中是否包含某對象  
  27.        BOOL b1 = [array4 containsObject:@"4"];  
  28.        BOOL b2 = [array4 containsObject:@"5"];  
  29.        NSLog(@"b1 = %d,b2 = %d",b1,b2);  
  30.          
  31.        //取數組內製定對象的索引  
  32.        int index = [array4 indexOfObject:@"4"];  
  33.        NSLog(@"index = %d",index);  
  34.          
  35.        NSString *str3 = [array4 lastObject];  
  36.        NSLog(@"array4 last object is %@",str3);  
  37.          
  38.        /*-----------------------可變數組NSMutableArray-----------------------------------------*/  
  39.        //初始化數組 指定數組長度   但可變  
  40.        NSMutableArray *mArray1 = [NSMutableArray arrayWithCapacity:5];  
  41.          
  42.        //向數組中添加元素  
  43.        [mArray1 addObject:@"aaaa"];  
  44.        [mArray1 addObject:@"cccc"];  
  45.        NSLog(@"mArray1 = %@",mArray1);  
  46.          
  47.        //向指定位置插入元素  
  48.        [mArray1 insertObject:@"bbbb" atIndex:1];  
  49.        [mArray1 insertObject:@"dddd" atIndex:[mArray1 count]];  
  50.        [mArray1 insertObject:@"eeee" atIndex:[mArray1 count]];  
  51.        NSLog(@"mArray1 = %@",mArray1);  
  52.          
  53.        //移除元素  
  54.        [mArray1 removeObject:@"eeee"];  
  55.        NSLog(@"mArray1 = %@",mArray1);  
  56.        [mArray1 removeObjectAtIndex:[mArray1 count]-1];  
  57.        NSLog(@"mArray1 = %@",mArray1);  
  58.        NSArray *array5 = [NSArray arrayWithObjects:@"bbbb",@"cccc", nil];  
  59.        [mArray1 removeObjectsInArray:array5];  
  60.        NSLog(@"mArray1 = %@",mArray1);  
  61.          
  62.        //向數組插入入數組  
  63.        NSMutableArray *mArray2 = [NSMutableArray arrayWithObjects:@"aaaa",@"aaaa", nil];  
  64.        [mArray2 addObject:@"bbbb"];  
  65.        NSLog(@"mArray2 = %@",mArray2);  
  66.        [mArray2 addObjectsFromArray:array4];  
  67.        NSLog(@"mArray2 = %@",mArray2);  
  68.          
  69.        //替換元素  
  70.        [mArray2 replaceObjectAtIndex:[mArray2 count]-1 withObject:@"5"];  
  71.        NSLog(@"mArray2 = %@",mArray2);  
  72.          
  73.        //遍曆數組  常規方法:效能較低  
  74.        NSArray *array6 = [NSArray arrayWithObjects:@"a",@"b",@"c",@"d",@"e", nil];  
  75.        int len = [array6 count];  
  76.        for (int i=0; i<len; i++) {  
  77.            NSString *value = [array6 objectAtIndex:i];  
  78.            NSLog(@"array6 %d content is %@",i,value);  
  79.        }  
  80.          
  81.        //枚舉遍曆  相當於java中的增強for迴圈  
  82.        for (NSString *string in array6) {  
  83.            NSLog(@"array6 content is %@",string);  
  84.        }  
  85.          
  86.        NSLog(@"-----------------------");  
  87.          
  88.        //當不確定數組元素類型時  
  89.        for(id string in array6){  
  90.            NSLog(@"array6 content is %@",string);  
  91.        } 

Objective-C中NSArray和NSMutableArray的基本用法

相關文章

聯繫我們

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