[html] view plaincopy
01.@interface ClassA : NSObject {
02. int _int4; //默认为protected
03.@public //可以通过这种方式指定成员变量的访问权限
04. int _int1;
05. int _int5;
06.@protected
07. int _int2;
08.@private
09. int _int3;
10.}
11.@property int int1;
12.@property int int5;
13.@property int myPro;
14.
15.@end