Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如果所有第一个索引都没有被 a 中的对象填充,我不知道是否可以在最后一个索引处添加对象NSMutableArray。可能吗?
NSMutableArray
简短的回答:没有。有关更多详细信息,请查看文档。
请注意,NSArray 对象与 C 数组不同。也就是说,即使您在创建数组时指定了大小,指定的大小也被视为“提示”;数组的实际大小仍然为 0。这意味着您不能在大于数组当前计数的索引处插入对象。例如,如果一个数组包含两个对象,其大小为 2,因此您可以在索引 0、1 或 2 处添加对象。索引 3 是非法的且超出范围;如果您尝试在索引 3 处添加对象(当数组的大小为 2 时),NSMutableArray 会引发异常。