博客
关于我
NSString的属性修饰使用copy和strong的区别
阅读量:379 次
发布时间:2019-03-05

本文共 733 字,大约阅读时间需要 2 分钟。

一、不可变字符串属性

@property (nonatomic, strong) NSString *strongedString;

@property (nonatomic, copy) NSString *copiedString;

当源不可变字符串改变时:

  • 使用strong修饰的属性由于取得的还是源不可变字符串地址,其值会跟随源字符串改变而改变。
  • 使用copy修饰的属性进行了浅拷贝,依然取得了源不可变字符串的地址,其值也会跟随源字符串改变而改变。

当源可变字符串改变时:

  • 使用strong修饰的属性由于取得的还是源不可变字符串地址,其值会跟随源字符串改变而改变。
  • 使用copy修饰的属性由于进行了深拷贝,取得了另一份内存地址,其值不会跟随源字符串改变。

二、可变字符串属性

@property (nonatomic, strong) NSMutableString *strongedString;

@property (nonatomic, copy) NSMutableString *copiedString;

当源字符串为不可变字符串时:

  • 使用strong修饰的属性由于取得的地址改变,源字符串不可变,其值不会跟随源字符串改变而改变。
  • 使用copy修饰的属性进行了深拷贝,源字符串不可变,其值不会随着字符串改变而改变。然而,对其使用appendString方法会造成闪退。

当源字符串为可变字符串时:

  • 使用strong修饰的属性的地址跟随源字符串地址,源字符串可变,其值会随着改变。
  • 使用copy修饰的属性进行了深拷贝,改变了地址,且为不可变字符串。然而,对其使用appendString方法会造成闪退。

可变字符串属性理解感觉不到位,待考究...

转载地址:http://hyhg.baihongyu.com/

你可能感兴趣的文章
Nodejs教程09:实现一个带接口请求的简单服务器
查看>>
Nodejs简介以及Windows上安装Nodejs
查看>>
nodejs系列之express
查看>>
nodejs配置express服务器,运行自动打开浏览器
查看>>
Node入门之创建第一个HelloNode
查看>>
Node出错导致运行崩溃的解决方案
查看>>
node安装及配置之windows版
查看>>
Node提示:error code Z_BUF_ERROR,error error -5,error zlib:unexpected end of file
查看>>
NOIp2005 过河
查看>>
NOPI读取Excel
查看>>
NoSQL&MongoDB
查看>>
NotImplementedError: Cannot copy out of meta tensor; no data! Please use torch.nn.Module.to_empty()
查看>>
npm error MSB3428: 未能加载 Visual C++ 组件“VCBuild.exe”。要解决此问题,1) 安装
查看>>
npm install digital envelope routines::unsupported解决方法
查看>>
npm install 报错 ERR_SOCKET_TIMEOUT 的解决方法
查看>>
npm install报错,证书验证失败unable to get local issuer certificate
查看>>
npm install无法生成node_modules的解决方法
查看>>
npm run build 失败Compiler server unexpectedly exited with code: null and signal: SIGBUS
查看>>
npm run build报Cannot find module错误的解决方法
查看>>
npm run build部署到云服务器中的Nginx(图文配置)
查看>>