在Objective-c中,使用@property来标识属性(一般是实例变量)。在实现文件中使用@synthesize标识所声明的变量,让系统自动生成设置方法和获取方法。
也就是说@property和@synthesize配对使用,让系统自动生成设置方法和获取方法。
例:
Test.h
- #import <Foundation/Foundation.h>
- @interface Test:NSObject {
- int intX;
- int intY;
- }
- @property int intX,intY;
- -(void) print;
- @end
Test.m
- #import "Test.h"
- @implementation Test
- @synthesize intX,intY;
- -(void) print {
- NSLog(@"intX+intY=%d",intX+intY);
- }
- @end
ClassTest.m
- #import <Foundation/Foundation.h>
- #import "Test.h"
- int main( int argc, const char* argv[]) {
- NSAutoreleasePool *pool = [[NSAutoreleasePool alloc]init];
- Test *test = [[Test alloc]init];
- [test setIntX:1];
- [test setIntY:1];
- [test print];
- [test release];
- [pool drain];
- return 0;
- }
程序运行结果:
- test.intY = 1;
它等价于:
- [test setIntX:1];
- [test setIntY:1];
同时,需要特别注意:版权声明:本文为博主原创文章,未经博主允许不得转载。