self.Json = [NSJsONSerialization JsONObjectWithData:self.data options:0 error:nil];
这个类方法(JsONObjectWithData)线程安全吗?我能确定吗?它在文档中写在哪里?
我知道实例方法通常不是线程安全的,除非文档说它们是.我是否可以说类方法是线程安全的,除非另有说明?
解决方法 我在这里有点猜测.Threading Programming Guide州
Immutable objects are generally thread-safe; once you create them,you
can safely pass these objects to and from threads.
调用类方法意味着向类对象发送消息,类对象是不可变的.我的结论是,从不同的theads中调用类方法是安全的.
总结以上是内存溢出为你收集整理的ios – 类方法和线程安全(NSJSONSerialization)全部内容,希望文章能够帮你解决ios – 类方法和线程安全(NSJSONSerialization)所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)