gpt4 book ai didi

objective-c - 分配 initWithString 与保留

转载 作者:行者123 更新时间:2023-11-28 22:42:15 24 4
gpt4 key购买 nike

从内存的角度来看以下两行之间有什么区别吗

NSString *dbFilePath =[[NSString alloc]initWithString:[[NSBundle mainBundle] pathForResource:dbName ofType:nil]];

  NSString *dbFilePath =[[[NSBundle mainBundle] pathForResource:dbName ofType:nil] retain]; 

[NSString alloc]initWithString:"或者只是"保留"

提前致谢

最佳答案

实际上,没有区别。但是,在第一种情况下,您暂时比第二种情况多了一个 NSString 对象,即 pathForResource 返回的对象,该对象将在不久后自动释放,并且它是幸存的副本。

在第二种情况下,没有复制。而是直接保留 pathForResource 返回的对象。高峰期少一对象。

我发现第二段代码更直接。

但是,我想知道为什么要保留从堆栈中引用的内容。我希望 dbFilePath 更持久一些,比如成员变量。

关于objective-c - 分配 initWithString 与保留,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14179709/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com