所以Obj C主要由Apple用来编写Cocoa应用程序。但是我更感兴趣的是利用Obj C的OOP,我不是要编写Cocoa应用程序,也不是真的对使用它制作GUI应用程序感兴趣,我只是想知道是否有两个版本的Obj C? GNU和Apple?因为我正在阅读维基百科,在“转发”部分下,对象可以将消息转发给可以处理消息的其他对象。
转发方法:
- (retval_t)forward:(SEL)sel args:(arglist_t)args; // with GCC
- (id)forward:(SEL)sel args:(marg_list)args; // with NeXT/Apple systems
行动方法:
- (retval_t)performv:(SEL)sel args:(arglist_t)args; // with GCC
- (id)performv:(SEL)sel args:(marg_list)args; // with NeXT/Apple systems
答案 0 :(得分:1)
差不多。 Apple和GCC在Objective-C语言的实现方面存在分歧,尽管很多代码仍然是源代码兼容的。