iOS 中对元素弱引用和强引用的集合

1.强引用集合

NSArray、NSDictionaty、NSSet

2.弱引用集合

NSPointerArray, ---- 对应 NSMutableArray

NSMapTable,     --- 对应NSMutableDictionary

NSHashTable     --- 对应NSMutableSet

2.1 NSPointerArray

NSPointerArray 和 NSMutableArray 一样同是有序可变集合,可插入、删除成员,不同的是可以存储NULL,且count可变,用NULL来填充

//实例化方法

- (instancetype)initWithOptions:(NSPointerFuntionOptions)options;

-(instancetype)initWithPointerFunctions:(NSPointerFuncitons *)functions;


NSPointerFuntionOptions 是个枚举值,定义了 内存管理策略、方法特性和内存标识,以下列出几个常用的枚举值:

1.内存管理策略:

1.1NSPionterFuntionsStrongMemory:强引用成员

1.2NSPionterFuntionsMallocMemory 和 NSPionterFuntionsVirtualMemory :用于Mach的虚拟内存管理

1.3NSPionterFuntionsWeakMemory:弱引用成员

2.方法特性相关:

2.1 NSPointerFuctionsObjectPersonality : hash/isEqual/对象描述

2.2 NSPointerFuctionsOpaquePersonality : pointer的 hash、直接判等

3.内存标识

3.1 NSPointerFuctionsCopyIn : 添加成员时进行 copy 操作

使用代码示例:

NSPointerFunctionsOptios options = NSPointerFunctionsStrongMemory | NSPointerFunctionsObjectPersonality | NSPointerFunctionsCopyIn;

NSPointerArray *array = [NSPointerArray initWithOptions:options];


static BOOL IsEqual(const void *item1, const void *item2, NSUInteger (*size)(const void *item)) {

return *(const int *)item1 == *(const int *)item2;

}

NSPoniterFucntions *functions = [[NSPointerFunctions alloc] init];

[functions setIsEqualFucntion:IsEqual];

2.2 NSMapTable

NSMapTable he NSPointerArray 的初始化方法和使用都类似,不同的是 NSMapTable的 key 和 object 各有不同的策略,所以有四种组合。

如果key 或者 object 是 weak 修饰时,任意一方在内存中被释放都会移除该键值对。

2.3 NSHashTable

NSHashTable 使用方法类似于 NSMutableSet,只不过该类型的 allObjects 属性返回的是一个 NSArray,会对成员强引用。


3.实现弱引用数组

使用NSValue

NSValue 可以弱引用保存一个对象,我们可以使用这种方法间接的引用

    NSMutableArray *array = [NSMutableArray array];

    Person*myObj = [[Personalloc] init];

    NSValue *value = [NSValue valueWithNonretainedObject:myObj];

    [array addObject:value];

4.实现弱引用字典

/* 分别用到了 NSValue 的 + valueWithNonretainedObject: 和 nonretainedObjectValue 方法来存取对象。

 把原来字典里的 key 封装成NSValue*/

- (nullableid)objectForKey:(id)aKey{

    NSValue *value = [self objectForKey:aKey];

    return value.nonretainedObjectValue;

}

- (void)fm_setObject:(id)anObject forKey:(id)aKey{

    NSValue*value = [NSValue valueWithNonretainedObject:anObject];

    [selffm_ setObject:value forKey:aKey];

}

- (void)fm_setDictionary:(NSDictionary*)otherDictionaty{

    [otherDictionaty enumerateKeysAndObjectsUsingBlock:^(id  _Nonnullkey,id  _Nonnullobj,BOOL*_Nonnullstop) {

        [selffm_setObject:obj forKey:key];

    }];

}

你可能感兴趣的:(iOS 中对元素弱引用和强引用的集合)