NSMutableArray 增删操作测试

mac2024-11-30  13

 

 

NSMutableArray *testArray = [NSMutableArray array]; [testArray addObject:@"1"]; [testArray addObject:@"2"]; [testArray addObject:@"3"]; NSLog(@"添加了 1 2 3 %@",testArray); [testArray insertObject:@"4" atIndex:0]; NSLog(@"最前面插入了4 %@",testArray); [testArray removeObject:@"1"]; NSLog(@"删除了1 %@",testArray); [testArray removeObject:@"0"]; NSLog(@"删除了0 (一个不存在的元素) %@",testArray);

 

添加了 1 2 3 (

    1,

    2,

    3

)

最前面插入了4 (

    4,

    1,

    2,

    3

)

删除了1 (

    4,

    2,

    3

)

删除了0 (一个不存在的元素) (

    4,

    2,

    3

)

 

最新回复(0)