Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
因此,Objective C 中的对象类型转换不是一个好的做法(不是一个好的设计),只有在真正需要时才必须使用它。对或错 ?
类型转换目标 c 对象根本不起作用,因为没有像 c++ 中那样重载转换运算符。所以基本上你只能安全地对具有公共超类的对象进行类型转换,例如 NSMutableString 和 NSString 等。
但你不需要这样做。
通常不需要对 objc 对象进行类型转换。