#import <Foundation/Foundation.h>@interface Person : NSObject
{int _no;@public // 在任何地方都能直接访问对象的成员变量int _age;@private // 只能在当前类的对象方法中直接访问int _height;@protected // 能在当前类和子类的对象方法中直接访问、、默认是protectint _weight;int _money;
}- (void)setHeight:(int)height;
- (int)height;- (void)test;
@end
转载于:https://www.cnblogs.com/IDRI/p/4952479.html