Objective-C中,类方法的getter和setter可以用点运算符吗?
Posted chaoguo1234
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Objective-C中,类方法的getter和setter可以用点运算符吗?相关的知识,希望对你有一定的参考价值。
Objective-C中,对象实例property的getter和setter可以使用点运算符来操作,那么类方法的getter和setter可以使用点运算吗?
答案是肯定的。
看如下代码:
#import <Foundation/Foundation.h> static int i = 0; @interface X : NSObject + (int)i; + (void)setI:(int)ii; @end @implementation X + (int)i { return i; } + (void)setI:(int)ii { i = ii; } @end int main() { X.i; X.i= 1; }
类X有对静态变量i操作的getter和setter类方法,使用clang -rewrite-objc命令将代码重写为c++查看:
int main() { ((int (*)(id, SEL))(void *)objc_msgSend)((id)objc_getClass("X"), sel_registerName("i")); ((void (*)(id, SEL, int))(void *)objc_msgSend)((id)objc_getClass("X"), sel_registerName("setI:"), 1); }
通过代码可以发现,main函数里面对静态setter和getter方法的调用,最终也是转换成了objc_msgSend的调用;并且对i进行设值得方法,最终转换成了调用setI方法。
以上是关于Objective-C中,类方法的getter和setter可以用点运算符吗?的主要内容,如果未能解决你的问题,请参考以下文章
Objective-C 错误:属性“活动”是类“例程”上的标量类型。无法为其生成 getter 方法
Swift - 带有Objective-C选择器'*'的方法'*()'与具有相同Objective-C选择器的超类'UIView'中的'*'的getter冲突