
#import <Foundation/Foundation.h> @interface Person : NSObject { //声明全变量 int _number;//编号 OC中用NSInteger声明整型变量 NSString * _name;//姓名 } //全局也可以用@protected声明 //成员方法 - (void)setNumber:(int)number; - (void)introduce; @end
#import <Foundation/Foundation.h> @interface Person : NSObject { //声明全变量 int _number;//编号 OC中用NSInteger声明整型变量 NSString * _name;//姓名 } //全局也可以用@protected声明 //成员方法 - (void)setNumber:(int)number; - (void)introduce; @end
遇见资源网 objective-c OC之C语言基础 http://www.ox520.com/18054.html