iphone - 通过使用 threadDictionary,此代码线程安全吗?
<p><pre><code>+(NSString*)FromNumber:(NSNumber*)number
{
NSString *key = akey;
NSNumberFormatter *numberFormatter = [[ threadDictionary] objectForKey:key];
if(!numberFormatter)
{
numberFormatter = ;
;
;
;
;
];
[[ threadDictionary] setValue:numberFormatter forKey:key];
}
return ;
}
</code></pre>
<p>我很好奇的是使用 <code>threadDictionary</code> 来同步代码块? </p>
<p>谢谢!</p></p>
<br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
<p><p>这段代码的线程安全取决于 <code>akey</code> 是一个常量。如果是,那么是的,这个方法是线程安全的,因为它在线程之间不共享任何状态。 (不过,我不确定您所说的“同步”是什么意思——据我所知,这里没有同步工作。)</p></p>
<p style="font-size: 20px;">关于iphone - 通过使用 threadDictionary,此代码线程安全吗?,我们在Stack Overflow上找到一个类似的问题:
<a href="https://stackoverflow.com/questions/17980074/" rel="noreferrer noopener nofollow" style="color: red;">
https://stackoverflow.com/questions/17980074/
</a>
</p>
页:
[1]