OC之C语言基础

清华大佬耗费三个月吐血整理的几百G的资源,免费分享!....>>>

#import <Foundation/Foundation.h>

@interface Person : NSObject
{

    //声明全变量
    int _number;//编号  OC中用NSInteger声明整型变量
 
    NSString * _name;//姓名

}

//全局也可以用@protected声明

//成员方法
- (void)setNumber:(int)number;
- (void)introduce;

@end