探索weak、strong、copy、assign、__weak、__strong的用法

更新:

  • 2018.10.12 修改了copy与strong修饰NSString、NSArray这些类型的解释和用法

开发环境:

Mac系统版本:macOS Mojave 10.14(18A391)
Xcode:Version 10.0 (10A255)

结论:

就怕你想看结论又不想看长篇大论,就把结论写到上面,免得你滑屏幕累得慌
  • strong 表示指向并拥有该对象。其修饰的对象引用计数会增加 1。该对象只要引用计数不为 0 则不会被销毁。当然强行将其设为 nil 可以销毁它。
  • weak 表示指向但不拥有该对象。其修饰的对象引用计数不会增加。无需手动设置,该对象会自行在内存中销毁。
  • assign 主要用于修饰基本数据类型,如 NSInteger 和 CGFloat ,这些数值主要存在于栈上。
  • weak 一般用来修饰对象,assign 一般用来修饰基本数据类型。
  • copystrong 类似。不同之处是 strong 的复制是多个指针指向同一个地址,而 copy 的复制每次会在内存中拷贝一份对象,指针指向不同地址。
  • __weak__strongweakstrong类似,区别是__weak__strong修饰变量,而weakstrong修饰属性,而且__weak__strong基本上都是与block相关;
  • 如果对象类型有对应的可变类型,例如NSString、NSArray、NSDictionary等,需要结合场景合理使用,而对应的可变类型用strong,使用copy会导致崩溃;
  • delegate使用weak修饰;
  • 各种视图控件推荐使用weak,官方就是这样做的;

探索:

1. 为什么assign不能用来修饰对象类型?

我先引用故胤道长在《iOS面试之道》这本书中的回答:
assign 修饰的对象被释放后,指针的地址依然存在,造成野指针,在堆上容易造成崩溃。而栈上的内存系统会自动处理,不会造成野指针。
总之一句话,使用assign修饰对象容易造成崩溃。

代码验证环节:

/// 定义一个assign修饰的字符串变量
@property (nonatomic, readwrite, assign) NSString *string_assign;
/// 验证代码
- (void)influenceForNSStringWithAssign {
    /// 此时self.string_assign的值为 null
    NSLog(@"赋值前:string_assign = %@", self.string_assign);
    {
        NSMutableString *temp = [NSMutableString stringWithString:@"hello world"];
        self.string_assign = temp;
        /// 此处self.string_assign的值为 hello world
        NSLog(@"赋值后:string_assign = %@", self.string_assign);
        [temp appendString:@" changed"];
        /// 此时self.string_assign的值为 hello world changed
        NSLog(@"原始值修改后:string_assign = %@", self.string_assign);
    }
    /// 此时超出temp的作用域,temp被释放,self.string_assign的指针地址依然存在,成为野指针,此时使用self.string_assign就会造成崩溃
    NSLog(@"超出原始值的作用于后:string_assign = %@\n\n", self.string_assign);
}
/// 控制台输出
2018-10-10 17:58:29.141563+0800 MemoryManagerDemo[36403:5926424] 赋值前:string_assign = (null)
2018-10-10 17:58:29.141712+0800 MemoryManagerDemo[36403:5926424] 赋值后:string_assign = hello world
2018-10-10 17:58:29.141827+0800 MemoryManagerDemo[36403:5926424] 原始值修改后:string_assign = hello world changed
(lldb) /// 此处崩溃
2. 使用copy和strong修饰NSString、NSArray这类有对应可变类型的对象类型有什么区别?

在对对象赋值的时候,如果是使用copy修饰,那么会在内存中将原对象的值拷贝一份,原对象与该对象指向的是不同的内存区域,原对象在之后做任何修改都与该对象无关;

而如果是使用strong修饰,那么该对象与原对象虽然是不同的指针对象,但指向的都是同一片内存区域,如果原对象进行了修改,那么即使这个对象是不可变的,它的值也会发生变化;

如果确定在赋值之后,原值不会修改,那么使用strong是比较好的选择,毕竟,copy会消耗系统资源,能省一点是一点吧。但是,如果是要对外开放的,需要外部使用人员赋值的,建议还是使用copy,因为你不知道他们会不会改变,你也控制不了,所以为了安全起见,而且对外开放提供给别人使用的肯定不会特别多,那么有限的几个copy消耗点资源比起安全来,又有什么大不了的呢?

代码验证环节:

/// 先定义两个使用不同修饰符的属性
@property (nonatomic, readwrite, strong) NSString *string_strong;
@property (nonatomic, readwrite, copy) NSString *string_copy;
- (void)influenceForNSStringWithStrong {
    NSLog(@"开始测试strong对NSString的影响");
    NSLog(@"赋值前:string_strong = %@", self.string_strong); /* string_strong = (null) */
    {
        NSMutableString *temp = [NSMutableString stringWithString:@"hello world"];
        self.string_strong = temp;
        NSLog(@"赋值后:string_strong = %@", self.string_strong); /* string_strong = hello world */
        [temp appendString:@" changed"];
        NSLog(@"原始值修改后:string_strong = %@", self.string_strong); /* hello world changed */
    }
    NSLog(@"超出原始值的作用于后:string_strong = %@\n\n", self.string_strong); /* hello world changed */
}

- (void)influenceForNSStringWithCopy {
    NSLog(@"开始测试copy对NSString的影响");
    NSLog(@"赋值前:string_copy = %@", self.string_copy); /* string_copy = (null) */
    {
        NSMutableString *temp = [NSMutableString stringWithString:@"hello world"];
        self.string_copy = temp;
        NSLog(@"赋值后:string_copy = %@", self.string_copy); /* string_copy = hello world */
        [temp appendString:@" changed"];
        NSLog(@"原始值修改后:string_copy = %@", self.string_copy); /* string_copy = hello world */
    }
    NSLog(@"超出原始值的作用于后:string_copy = %@\n\n", self.string_copy); /* string_copy = hello world */
}
/// 控制台输出
2018-10-10 18:15:24.559236+0800 MemoryManagerDemo[36553:5936151] 开始测试strong对NSString的影响
2018-10-10 18:15:24.559368+0800 MemoryManagerDemo[36553:5936151] 赋值前:string_strong = (null)
2018-10-10 18:15:24.559460+0800 MemoryManagerDemo[36553:5936151] 赋值后:string_strong = hello world
2018-10-10 18:15:24.559551+0800 MemoryManagerDemo[36553:5936151] 原始值修改后:string_strong = hello world changed
2018-10-10 18:15:24.559650+0800 MemoryManagerDemo[36553:5936151] 超出原始值的作用于后:string_strong = hello world changed


2018-10-10 18:15:24.559742+0800 MemoryManagerDemo[36553:5936151] 开始测试copy对NSString的影响
2018-10-10 18:15:24.559860+0800 MemoryManagerDemo[36553:5936151] 赋值前:string_copy = (null)
2018-10-10 18:15:24.559957+0800 MemoryManagerDemo[36553:5936151] 赋值后:string_copy = hello world
2018-10-10 18:15:24.560050+0800 MemoryManagerDemo[36553:5936151] 原始值修改后:string_copy = hello world
2018-10-10 18:15:24.560151+0800 MemoryManagerDemo[36553:5936151] 超出原始值的作用于后:string_copy = hello world
3. 为什么说weak修饰的对象会自行在内存中销毁?

这就没啥说的了,直接代码验证:

@property (nonatomic, readwrite, weak) NSString *string_weak;
- (void)influenceForNSStringWithWeak {
    NSLog(@"开始测试weak对NSString的影响");
    NSLog(@"赋值前:string_weak = %@", self.string_weak); /* string_weak = (null) */
    {
        NSMutableString *temp = [NSMutableString stringWithString:@"hello world"];
        self.string_weak = temp;
        NSLog(@"赋值后:string_weak = %@", self.string_weak); /* string_weak = hello world */
        [temp appendString:@" changed"];
        NSLog(@"原始值修改后:string_weak = %@", self.string_weak); /* string_weak = hello world changed */
    }
    /* string_weak = (null) ,此处已经超出了temp的作用域了,而temp又没有其他的引用,就会被释放,string_weak自然就为null了*/
    NSLog(@"超出原始值的作用于后:string_weak = %@\n\n", self.string_weak); 
}
/// 控制台输出
2018-10-10 18:22:54.118462+0800 MemoryManagerDemo[36613:5941777] 开始测试weak对NSString的影响
2018-10-10 18:22:54.118845+0800 MemoryManagerDemo[36613:5941777] 赋值前:string_weak = (null)
2018-10-10 18:22:54.119251+0800 MemoryManagerDemo[36613:5941777] 赋值后:string_weak = hello world
2018-10-10 18:22:54.119474+0800 MemoryManagerDemo[36613:5941777] 原始值修改后:string_weak = hello world changed
2018-10-10 18:22:54.119673+0800 MemoryManagerDemo[36613:5941777] 超出原始值的作用于后:string_weak = (null)
4. 为什么不能用copy修饰NSMutableString这种可变对象?
@property (nonatomic, readwrite, strong) NSMutableString *mutableString_strong;
@property (nonatomic, readwrite, copy) NSMutableString *mutableString_copy;
- (void)influenceForNSMutableStringWithCopy {
    NSString *temp = @"hello world";
    self.mutableString_strong = [NSMutableString stringWithString:temp];
    self.mutableString_copy = [NSMutableString stringWithString:temp];
    [self.mutableString_strong appendString:@" changed"];
    [self.mutableString_copy appendString:@" changed"];
}
/// 控制台输出
2018-10-10 20:35:49.432473+0800 MemoryManagerDemo[36990:5966214] *** Terminating app due to uncaught exception 'NSInvalidArgumentException', reason: 'Attempt to mutate immutable object with appendString:'
*** First throw call stack:
(
    0   CoreFoundation                      0x000000011124329b __exceptionPreprocess + 331
    1   libobjc.A.dylib                     0x00000001107df735 objc_exception_throw + 48
    2   CoreFoundation                      0x00000001112430f5 +[NSException raise:format:] + 197
    3   CoreFoundation                      0x0000000111189dc9 mutateError + 121
    4   MemoryManagerDemo                   0x000000010febf6f5 -[ViewController influenceForNSMutableStringWithCopy] + 309
    5   MemoryManagerDemo                   0x000000010febf3fb -[ViewController influenceForNSMutableString:] + 59
    6   UIKitCore                           0x0000000114ee47c3 -[UIApplication sendAction:to:from:forEvent:] + 83
    7   UIKitCore                           0x000000011501ce85 -[UIControl sendAction:to:forEvent:] + 67
    8   UIKitCore                           0x000000011501d1a2 -[UIControl _sendActionsForEvents:withEvent:] + 450
    9   UIKitCore                           0x000000011501c0e6 -[UIControl touchesEnded:withEvent:] + 583
    10  UIKitCore                           0x00000001156f7334 -[UIWindow _sendTouchesForEvent:] + 2729
    11  UIKitCore                           0x00000001156f8a30 -[UIWindow sendEvent:] + 4080
    12  UIKitCore                           0x0000000114efee10 -[UIApplication sendEvent:] + 352
    13  UIKitCore                           0x0000000114e370d0 __dispatchPreprocessedEventFromEventQueue + 3024
    14  UIKitCore                           0x0000000114e39cf2 __handleEventQueueInternal + 5948
    15  CoreFoundation                      0x00000001111a6b31 __CFRUNLOOP_IS_CALLING_OUT_TO_A_SOURCE0_PERFORM_FUNCTION__ + 17
    16  CoreFoundation                      0x00000001111a6464 __CFRunLoopDoSources0 + 436
    17  CoreFoundation                      0x00000001111a0a4f __CFRunLoopRun + 1263
    18  CoreFoundation                      0x00000001111a0221 CFRunLoopRunSpecific + 625
    19  GraphicsServices                    0x00000001198f41dd GSEventRunModal + 62
    20  UIKitCore                           0x0000000114ee3115 UIApplicationMain + 140
    21  MemoryManagerDemo                   0x000000010febfce0 main + 112
    22  libdyld.dylib                       0x0000000112ba9551 start + 1
    23  ???                                 0x0000000000000001 0x0 + 1
)
libc++abi.dylib: terminating with uncaught exception of type NSException
(lldb) 

上面的代码执行后,会导致崩溃,可以看到上面控制台输出的崩溃记录,奔溃的原因是Attempt to mutate immutable object with appendString:,这句话的意思是尝试用附件字符串来改变不可变对象:,我们创建的对象明明是可变的,为什么在改变的时候却因为该对象不可改变而崩溃呢?其实这就是copy的贡献了。接下来我们输出他们赋值之后的类型你就会明白了,看下图。

验证.png

看到了吗?经过赋值之后strong修饰的对象依然是NSMutableString,然而copy修饰的对象却变成了NSString,这是为什么呢?
其实,这是因为所有的这种可变类型都是继承对应的不可变类型,然而,却没有重写不可变类型的copy方法,当使用copy修饰的时候,调用不可变类型的copy方法,得到的其实是一个不可变的对象,此时,我们去修改它,自然就会报错了。

结尾:

最近在看唐巧大神和故胤道长一起写的《iOS面试之道》和《Objective-C高级编程 iOS与OS X多线程和内存管理》这两本书,突然心血来潮,以前没仔细研究过,这次就研究了一下,把不定期更新的博客更新一下,有用你就给个喜欢,没用就当看个热闹,想认识交流技术的就关注一下,关注我的我也会关注你哦。

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 203,456评论 5 477
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 85,370评论 2 381
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 150,337评论 0 337
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 54,583评论 1 273
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 63,596评论 5 365
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,572评论 1 281
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 37,936评论 3 395
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,595评论 0 258
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 40,850评论 1 297
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,601评论 2 321
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,685评论 1 329
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,371评论 4 318
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 38,951评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 29,934评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,167评论 1 259
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 43,636评论 2 349
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,411评论 2 342

推荐阅读更多精彩内容