1.OC中类的声明和实现
1.1类的声明
@interface ViewController : UIViewController
@end
1.2方法的声明
-(id) initWithAge:(int)_age identify:(int)_identify
1.3方法的调用
2实例变量
3.OC中的指针
3.1OC语言中除基本数据类型以外的变量类型都称为指针类型
4.self和super关键字
4.1self指的是类的对象本身
4.2super指的是父类对象本身
5.@class和#import