Object c可变数组

本节学习内容:

1.可变数组的概念

2.可变数组的创建及初始化

3.向可变数组中添加元素

4.数组元素的替换

5.删除数组中的元素

6.数组的排序


【main.m】

#import

【1.可变数组的概念】

1.可变数组继承于不可变数组

2.NSMutableArray,

3.创建可变数组对象,不可变数组中的方法,可变数组对象都可以调用

4.对于可变数组对象,可以直接添加元素,修改元素,删除元素

5.数组中的元素不能为nil(空对象);

int main(int argc, const char * argv ){

@autoreleasepool{


【2.可变娄组的创建及初始化】

NSMutableArray *array=[[NSMutableArray alloc] initWithObjects:@"one",@"two",@"three",nul];

NSLog(@"array=%@",array);

打印结果:array=(one,two,three)

1.[构造方法]初始化指定容量大小的可变数组对象(Capacity:20 表示最少可以容易20个数组)

NSMutableArray *array1=[[NSMutableArray alloc] initWithCapacity:20];

2.类方法创建指定容量大小的可变数组对象

NSMutableArray *array2=[NSMutableArray arrayWithCapacity:20] ;

NSLog(@"array1=%@ array2=%@",array1,array2);

打印结果:array1=() array2=()


【3.向可变数组中添加元素】

1.添加一个对象到可变数组中

【array addobject:@"four"];

NSLog(@"array=%@",array);

打印结果:array=(one,two,three,four)

2.把传数组中的所有元素添加到可变数组中

【array addobjectsFromArray:@“five”,@"six",@"seven"]];

NSLog(@"array=%@",array);

打印结果:array=(one,two,three,four,five,six,seven)

3.在指定位置增加数组元素

【array insertObject:@"hello" atIndex:3]

NSLog(@"array=%@",array);

打印结果:array=(one,two,three,hello,four,five,six,seven)

4.指定下标的多个位置添加数组元素

//创建可变下标集合类对象{1,3,5,6}4个元素

NSMutableIndexSet *mulset=[NSMutableIndexSet indexSetWithIndex:1];

[mulset addIndex:3];

[mulset addIndexsTnRanget:NSMarkeRange(5,2)];

//集合数组对象元素个数要与数组元素个数要相同

【array insertObjects:@[@"baidu",@"hao123",@'google',@"beautify"] atIndex:mulset]

NSLog(@"array=%@",array);

打印结果:array=(one,baidu,two,hao123,three,google,beautify,hello,four,five,six,seven)

5.修改(重置)数组对象

【array setArray:@"hello",@"world",@"baidu",@"hao123"]];

NSLog(@"array=%@",array);

打印结果:array=(hello,world,baidu,hao123)

【4.数组元素的替换】

1.替换指定下标位置的元素

【array replaceObjectAtIndex:2 withObject:@"perfect"];

NSLog(@"array=%@",array);

打印结果:array=(hello,world,perfect,hao123)

2.同时替换下票集合位置的数组元素

NSIndexSet *indexset=[NSIndexSet indexSetWitIndexInRage:NSMakeRange(2,2)]

//集合中的元素就是{2,3}

[array replaceObjectsAtIndexs:(@[@"beautify",@"handsome"]) withobjects:()]

NSLog(@"array=%@",array);

打印结果:array=(hello,world,beautify,handsome);

3.交换数组中的元素

[array exchantObjectAtIndex:1 withObjectAtIndex:3];

NSLog(@"array=%@",array);

打印结果:array=(hello,handsome,beautify,world);

4.替换指定范围的数组元素

[array replaceObjectsInRange:NSMakRange(1,2)withObjectsFromArray:@[@"one",@"two",@"three",@"four")];

NSLog(@"array=%@",array);

打印结果:array=(hello,one,two,three,four,world);

【5.删除数组中的元素】

1.删除指定的数组元素,若当前元素有多个则删除所有的

[array removeObject:@"one"];

NSLog(@"array=%@",array);

打印结果:array=(hello,two,four,world);

2.删除指定下票位置的元素

[array removeObjectAiIndex:2]

NSLog(@"array=%@",array);

打印结果:array=(hello,three,four,world);

3.删除数组中最后一个元素

[array removeLastObjects];

4.删除数组中所有元素

[array removeAllObjects];

[addObject:@"hello"]

[array insertObject:@"hello" atIndex:2];

NSLog(@"array=%@",array);

打印结果:array=(hello,two,hello,four,world,hello);

5.删除在指定范围内出现的数组元素

[array removeObject:@"hello" inRange:NSMakeRange(2,4)];

NSLog(@"array=%@",array);

打印结果:array=(hello,two,four,world,hello);

//删除所有在传入数组中出的元素,如果没有出现就不会删除,也不会影响

[array removeObjectInArray:@[@"hello",@"world",@"baidu"]];

NSLog(@"array=%@",array);

打印结果:array=(two,four);

【6.数组的排序】

1.排序的数组中的对象必须为同一类型

NSMutableArray *sortArray=[NSMutableArray arrayWitArray:@[@"one",@"two",@"three",,@"four",@"five"]];

//选择器:传递 元素的比较规则

//@selector 创建选择器的关键字,compare:字符比较

//比较规则的方法的返回值大于0时,底层数组元素交换位置

[sortArray sortUsingSelector:(@selector(compare:))];

NSLog(@"sortArray=%@",sortArray);

打印结果:sortArray=(five,four,ome,three,two);

}

//排序不可变数组,需要接收该方法的返回值,可变数组也可以调用

[sortArray sortedArrayUsingSelector:@selector(compare:)]

return 0;

}


你可能感兴趣的:(Object c可变数组)