Objective-C insertObject:atIndex 和 arrayWithCapacity:

Posted Xiejunyi12

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Objective-C insertObject:atIndex 和 arrayWithCapacity:相关的知识,希望对你有一定的参考价值。

这份代码有几处错误?

#import <Foundation/Foundation.h>

int main(int argc, const char * argv[]) 
    @autoreleasepool 
        // insert code here...
        NSLog(@"Hello, World!");
        NSMutableArray *array = [NSMutableArray arrayWithCapacity:10];
        //
        [array insertObject:@"234" atIndex:0];
        //
        [array insertObject:@"234" atIndex:5];
        //
        [array replaceObjectAtIndex:7 withObject:@"123"];
    
    return 0;
#import <Foundation/Foundation.h>

int main(int argc, const char * argv[]) 
    @autoreleasepool 
        // insert code here...
        NSLog(@"Hello, World!");
        NSMutableArray *array = [NSMutableArray arrayWithCapacity:10];
        //
        [array insertObject:@"234" atIndex:0];
        //错
        [array insertObject:@"234" atIndex:5];
        //错
        [array replaceObjectAtIndex:7 withObject:@"123"];
    
    return 0;

为什么???
看看苹果怎么说

顺便提一下,arrayWithCapacity:这个方法主要是为了提高程序的运行速度.
这是我的独立博客
https://junyixie.github.io/2017/01/16/Objective-C-insertObject-atIndex-%E5%92%8C-arrayWithCapacity/

以上是关于Objective-C insertObject:atIndex 和 arrayWithCapacity:的主要内容,如果未能解决你的问题,请参考以下文章

Objective-C - 改变NSMutableArray的特定元素

insertObject 不添加对象?

insertObject: atIndex: - 空数组的索引 3 超出范围

NSArrayM 中的异常 insertObject:atindex

NSManagedObjectContext insertObject - 字符串存储为空

managedContext.insertObject 在 Swift 中调用“atIndex”的额外参数?