只用@property定义一个属性speed,子类不能直接用_speed,需要在interface的成员变量列表里写上_speed
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了只用@property定义一个属性speed,子类不能直接用_speed,需要在interface的成员变量列表里写上_speed相关的知识,希望对你有一定的参考价值。
//写法一: @interface Person : NSObject { } @property (nonatomic, strong) NSString *name; @end @implementation Person @end //这个适用与一般情况,编译器自动生成成员变量_name,而且写法最简单,不必重复声明。 //写法二,针对继承情况下,向子类暴露父类成员变量: @interface Person : NSObject { NSString *_name; } @property (nonatomic, strong) NSString *name; @end @implementation Person @synthesize name = _name; // 这行可有可无 @end
@interface Test : NSObject{ //NSString *_test; 这里也可以不写,不写的缺点是,某个子类继承了Test,会不能直接用_test属性 } @property (nonatomic,copy)NSString *test; @end @implementation Test //@synthesize test = _test;系统帮你做了这件事,所以你不用写 //@synthesize test = test_;如果你觉得前置_不可接受,想改成后置的,这里就得写一下 @end 这么写,原因 1,简洁 2,外界访问用 .test 3,内部访问用_test,系统自动生成
写法一:
这个适用与一般情况,编译器自动生成成员变量_name,而且写法最简单,不必重复声明。
写法二,针对继承情况下,向子类暴露父类成员变量:
@interface Person : NSObject
{
}
@property (nonatomic, strong) NSString *name;
@end
@implementation Person
@end
写法二,针对继承情况下,向子类暴露父类成员变量:
@interface Person : NSObject
{
NSString *_name;
}
@property (nonatomic, strong) NSString *name;
@end
@implementation Person
@synthesize name = _name;
@end
作者:RefuseBT
链接:https://www.zhihu.com/question/22195598/answer/39593235
来源:知乎
著作权归作者所有。商业转载请联系作者获得授权,非商业转载请注明出处。
以上是关于只用@property定义一个属性speed,子类不能直接用_speed,需要在interface的成员变量列表里写上_speed的主要内容,如果未能解决你的问题,请参考以下文章