//写法一:@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,外界访问用 .test3,内部访问用_test,系统自动生成
写法一: 这个适用与一般情况,编译器自动生成成员变量_name,而且写法最简单,不必重复声明。 写法二,针对继承情况下,向子类暴露父类成员变量:
作者:RefuseBT 链接:https://www.zhihu.com/question/22195598/answer/39593235 来源:知乎 著作权归作者所有。商业转载请联系作者获得授权,非商业转载请注明出处。 @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