我正在尝试通过 Objective-C 教程来学习。书中有这个例子:
@interface
{
int width;
int height;
XYPoint *origin;
}
@property int width, height;
我想,“嘿,XYPoint 对象没有 getter/setter。不过代码确实有效。” 现在我可能会回答我自己的问题:)。
我认为这是因为“原点”已经是一个指针,而在“宽度”和“高度”的引擎盖下发生的事情是要创建一个指向它们的指针..
我是对的,还是我在说 BS :) ??
我只是不明白。这是主要的:
#import "Rectangle.h"
#import "XYPoint.h"
int main (int argc, char *argv[])
{
NSAutoreleasePool * pool = [[NSAutoreleasePool alloc] init];
Rectangle *myRect = [[Rectangle alloc] init];
XYPoint *myPoint = [[XYPoint alloc] init];
[myPoint setX: 100 andY: 200];
[myRect setWidth: 5 andHeight: 8];
myRect.origin = myPoint;
NSLog (@"Rectangle w = %i, h = %i",
myRect.width, myRect.height);
NSLog (@"Origin at (%i, %i)",
myRect.origin.x, myRect.origin.y);
NSLog (@"Area = %i, Perimeter = %i",
[myRect area], [myRect perimeter]);
[myRect release];
[myPoint release];
[pool drain];
return 0;
}
这是 Rectangle 对象:
#import "Rectangle.h"
#import "XYPoint.h"
@implementation Rectangle
@synthesize width, height;
-(void) setWidth: (int) w andHeight: (int) h
{
width = w;
height = h;
}
- (void) setOrigin: (XYPoint *) pt
{
origin = pt;
}
-(int) area
{
return width * height;
}
-(int) perimeter
{
return (width + height) * 2;
}
-(XYPoint *) origin
{
return origin;
}
@end
我不明白的是这条线主要是:myRect.origin = myPoint;
我没有为它做一个二传手..
顺便说一句,感谢您的快速回复