Objective-C 中的数据存储

在任何程序中,数据存储和检索都是最重要的。在 Objective-C 中,我们通常不依赖链表这样的结构,因为它会使工作变得复杂。相反,我们使用像 NSArrayNSSetNSDictionary 及其可变形式这样的集合。


NSArray 与 NSMutableArray

NSArray 用于保存对象的不可变数组,NSMutableArray 用于存储对象的可变数组。

可变性有助于在运行时将数组更改为预先分配的数组,但如果使用 NSArray,则只能替换现有数组,而不能更改现有数组的内容。

NSArray 的重要方法如下:

  • alloc/initWithObjects − 用于使用对象初始化数组。
  • objectAtIndex − 返回特定索引处的对象。
  • count − 返回对象数。

NSMutableArray 继承自 NSArray,因此 NSArray 的所有实例方法在 NSMutablerArray 中都可用。

NSMutableArray 的重要方法如下:

  • removeAllObjects − 清空数组。
  • addObject − 在数组末尾插入给定对象。
  • removeObjectAtIndex − 这用于删除特定索引处的对象。
  • exchangeObjectAtIndex: withObjectAtIndex − 以给定索引交换数组中的对象。
  • replaceObjectAtIndex: withObject − 将索引处的对象替换为对象。

我们必须记住,上面的列表只是常用的方法,我们可以跳转到 XCode 中的各个类,以了解这些类中的更多方法。

下面显示了一个简单的实例:

  1. #import <Foundation/Foundation.h>
  2. int main() {
  3. NSAutoreleasePool * pool = [[NSAutoreleasePool alloc] init];
  4. NSArray *array = [[NSArray alloc]
  5. initWithObjects:@"string1", @"string2",@"string3",nil];
  6. NSString *string1 = [array objectAtIndex:0];
  7. NSLog(@"The object in array at Index 0 is %@",string1);
  8. NSMutableArray *mutableArray = [[NSMutableArray alloc]init];
  9. [mutableArray addObject: @"string"];
  10. string1 = [mutableArray objectAtIndex:0];
  11. NSLog(@"The object in mutableArray at Index 0 is %@",string1);
  12. [pool drain];
  13. return 0;
  14. }

结果如下:

  1. 2022-07-07 02:33:23.195 demo[3487] The object in array at Index 0 is string1
  2. 2022-07-07 02:33:23.196 demo[3487] The object in mutableArray at Index 0 is string

在上面的程序中,我们看到了 NSMutableArrayNSArray 之间的简单区别,我们可以在可变数组中分配后插入字符串。


NSDictionary 与 NSMutableDictionary

NSDictionary 用于保存对象的不可变字典,NSMutableDictionary 用来保存对象的可变字典。

NSDictionary 的重要方法如下:

  • alloc/initWithObjectsAndKeys − 使用从指定的值和键集构造的条目初始化新分配的字典。
  • valueForKey − 返回与给定键关联的值。
  • count − 返回字典中的条目数。

NSMutableDictionary 继承自 NSDictionary,因此 NSDictional 的所有实例方法都可以在 NSMutableDictionary 中使用

NSMutableDictionary 的重要方法如下:

  • removeAllObjects − 清空字典中的条目。
  • removeObjectForKey − 从字典中删除给定键及其关联值。
  • setValue:forKey − 将给定的键值对添加到字典中。

字典的一个简单实例如下所示:

  1. #import <Foundation/Foundation.h>
  2. int main() {
  3. NSAutoreleasePool * pool = [[NSAutoreleasePool alloc] init];
  4. NSDictionary *dictionary = [[NSDictionary alloc] initWithObjectsAndKeys:
  5. @"string1",@"key1", @"string2",@"key2",@"string3",@"key3",nil];
  6. NSString *string1 = [dictionary objectForKey:@"key1"];
  7. NSLog(@"The object for key, key1 in dictionary is %@",string1);
  8. NSMutableDictionary *mutableDictionary = [[NSMutableDictionary alloc]init];
  9. [mutableDictionary setValue:@"string" forKey:@"key1"];
  10. string1 = [mutableDictionary objectForKey:@"key1"];
  11. NSLog(@"The object for key, key1 in mutableDictionary is %@",string1);
  12. [pool drain];
  13. return 0;
  14. }

结果如下:

  1. 2022-07-07 18:34:50.528 demo[9135] The object for key, key1 in dictionary is string1
  2. 2022-07-07 18:34:50.528 demo[9135] The object for key, key1 in mutableDictionary is string

NSSet 与 NSMutableSet

NSSet 用于保存不可变的不同对象集,NSMutableDictionary 用于保存不同对象的可变集。

NSSet 的重要方法如下:

  • alloc/initWithObjects − 使用从指定对象列表中获取的成员初始化新分配的集合。
  • allObjects − 返回包含集合成员的数组,如果集合没有成员,则返回空数组。
  • count − 返回集合中的成员数。

NSMutableSet 继承自 NSSet,因此 NSSet 的所有实例方法在 NSMutableSet 中都可用。

NSMutableSet 的重要方法如下:

  • removeAllObjects − 清空集合中的所有成员。
  • addObject − 如果给定对象不是成员,则将其添加到集合中。
  • removeObject − 从集合中删除给定对象。

集合的一个简单实例如下所示:

  1. #import <Foundation/Foundation.h>
  2. int main() {
  3. NSAutoreleasePool * pool = [[NSAutoreleasePool alloc] init];
  4. NSSet *set = [[NSSet alloc]
  5. initWithObjects:@"string1", @"string2",@"string3",nil];
  6. NSArray *setArray = [set allObjects];
  7. NSLog(@"The objects in set are %@",setArray);
  8. NSMutableSet *mutableSet = [[NSMutableSet alloc]init];
  9. [mutableSet addObject:@"string1"];
  10. setArray = [mutableSet allObjects];
  11. NSLog(@"The objects in mutableSet are %@",setArray);
  12. [pool drain];
  13. return 0;
  14. }

结果如下:

  1. 2022-07-07 18:35:40.221 demo[12341] The objects in set are (string3, string2, string1)
  2. 2022-07-07 18:35:40.222 demo[12341] The objects in mutableSet are (string1)

分类导航