iphone - 需要对单例模式有所了解
<p><p>我将在这里粘贴一个代码,并有一个关于我只想理解的问题,基于逻辑方式。</p>
<pre><code>@interface MySingleton : NSObject {
NSString *enteredCode;
}
@property (nonatomic, retain) NSString *enteredCode;
@end
@synthesize enteredCode;
-(void) addInput:(NSString *) input
{
self.enteredCode = ;
}
- (void)dealloc {
;
}
@end
</code></pre>
<p>在我的代码中,如果我使用“<strong>self.enteredCode = ;” </p>
<p>一切正常,但是 "<strong>enteredCode = ;</strong>"它得到了 exc_bad_access,我只是想知道为什么会这样?</p>
<p>我只是想了解它在没有 self 的情况下到底有什么不同?</p>
<p>谢谢。</p></p>
<br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
<p><p>这与单例无关。当您执行 <code>self.enteredCode</code> 时,您将通过设置为“保留”的属性。 <code>stringByAppendingString</code> 方法是一个方便的方法,它返回一个自动释放的对象给你,这意味着它将在下一个运行循环的某个时间点释放。您需要保留此值以阻止它被释放,当您<strong>通过</strong>属性分配它时很好,因为它已被您正确保留,您可以随意使用它。</p>
<p>当您引用变量目录(没有 <code>self.</code>)时,您会绕过它,因此您永远不会保留该值,该值随后会被释放,并且您引用了错误的内存和 BOOOOOOOOM,访问不正确。</p></p>
<p style="font-size: 20px;">关于iphone - 需要对单例模式有所了解,我们在Stack Overflow上找到一个类似的问题:
<a href="https://stackoverflow.com/questions/8010107/" rel="noreferrer noopener nofollow" style="color: red;">
https://stackoverflow.com/questions/8010107/
</a>
</p>
页:
[1]