@interface Person : NSObject
@property (nonatomic, copy) NSString *name;
@end
@interface Student : Person
@end
1.Student类无法使用_name来访问Person中属性name,因为当使用@property声明的属性时,声明和实现了setter,getter方法外,创建的_name默认为:private。
原文地址:http://www.cnblogs.com/hetty/p/3717725.html