oc中的成员变量定义@interface 和@implementation的区别

@interface 中是成员变量

@implementation 是全局变量,私有,中的变量无法被子类继承

一个变量放在@interface中,你申请一个实体时,变量存活周期跟你实体一样

在@implementation 中,因为是全局,所以一直存在

你可能感兴趣的:(oc中的成员变量定义@interface 和@implementation的区别)