ios – 类方法和线程安全(NSJSONSerialization)

前端之家收集整理的这篇文章主要介绍了ios – 类方法和线程安全(NSJSONSerialization)前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
在我的iOS应用程序中,我在后台线程中做一些工作(使用performSelectorInBackground).在这个线程中,我使用NS JSONSerialization及其类方法来解析JSON字符串:
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中调用方法是安全的.

原文链接:https://www.f2er.com/iOS/334131.html

猜你在找的iOS相关文章