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,我发现这句话很有趣:
self = [super init]
Objective-C 的 self 参数和 JavaScript 的原型链一样吗?
提前致谢。
不。Objective-C 的继承模型不是基于原型的,它有类作为实例的蓝图。对 self 的调用不会导致任何原型链。
Obj-C 的 self 与 Java 的 this 相关性更好。