gpt4 book ai didi

objective-c - 设置嵌套对象?

转载 作者:行者123 更新时间:2023-12-03 17:37:13 25 4
gpt4 key购买 nike

我只是想确保在继续使用 Objective-C 时我能把事情做好,如果可以的话,我想问两个简单的问题:

(1) 我是否可以从 Rectangle 中正确访问 Position 对象?我是否可以访问我在 init 中设置的指针所包含的 Position 对象,或者是否有更好的方法?

(2) 在 [setPosX: andPosY:] 中,设置 Position 实例变量的两种方法中哪一种最好,还是真的不重要?

// INTERFACE
@interface Position: NSObject {
int posX;
int posY;
}
@property(assign) int posX;
@property(assign) int posY;
@end

@interface Rectangle : NSObject {
Position *coord;
}
-(void) setPosX:(int) inPosX andPosY:(int) inPosY;

// IMPLEMENTATION
@implementation Rectangle
-(id) init {
self = [super init];
if (self) {
NSLog(@"_init: %@", self);
coord = [[Position alloc] init];
// Released in dealloc (not shown)
}
return(self);
}
-(void) setPosX:(int) inPosX andPosY:(int) inPosY {
//[coord setPosX:inPosX];
//[coord setPosY:inPosY];
coord.posX = inPosX;
coord.posY = inPosY;
}

EDIT_01

然后,当我初始化 Rectangle 对象时,我是否会调用 -(id)initWithX:andY: ?如果是这样,我该如何从 main() 中设置 posX 和 posY ?或者我是否用另一个 -(id)initWithX:andY: 替换矩形的 init 并传递值?

@implementation Rectangle
-(id) init {
self = [super init];
if (self) {
NSLog(@"_init: %@", self);
coord = [[Position alloc] initWithX:1234 andY:5678];
}
return(self);
}
...

干杯加里

最佳答案

(1) 您访问正确。

(2) 在 Objective-c 2.0 中,分配具有相同的效果。

明智的设计,你会想要:

-(void) setPosX:(int) inPosX andPosY:(int) inPosY;

...进入 Position 方法。这将数据和相关方法封装到一个对象中。所以你可以调用这样的电话:

coord = [[Position alloc] initWithX:inPosX andY:inPosY];

或者 [坐标集PosX:inPosX和PosY:inPosY];

一切都更加干净且更易于维护。

<小时/>

编辑O1

Do I then call -(id)initWithX:andY: from the Rectangle object when I init it?

这取决于您的设计。如果 coord 属性对于 Rectangle 实例绝对重要,那么您应该在初始化 Rectangle 实例时调用它。您甚至可以为 Rectangle 编写一个初始化程序,将位置或 x 和 y 作为输入。例如:

-(id) initWithPosition:(Position *) aPos {
self = [super init];
if (self) {
NSLog(@"_init: %@", self);
coord = aPos;
// Released in dealloc (not shown)
}
return self;
}

您还应该为 Position 类编写一个方便的初始化程序:

-(id) initWithX:(NSInteger) x andY:(NSInteger) y{
self=[super init];
self.posX=x;
self.posY=y;
return self;
}

然后你可以这样调用:

Position *aPos=[[Position alloc] initWithX:100 andY:50];
Rectangle *aRec=[[Rectangle alloc] initWithPosition:aPos];

或者您可以为 Rectangle 编写另一个组合初始值设定项:

-(id) initWithXCoordinate:(NSInteger) x andYCoordinate:(NSInteger) y{
self=[super init];
Position *aPos=[[Position alloc] initWithX:x andY:y];
self.coord=aPos;
return self;
}

并这样调用它:

Rectangle *aRec=[[Rectangle alloc] initWithXCoordinate:100 
andYCoordinate:50];

这些都是粗略的例子,但你已经明白了。 Objective-c 在设置初始值设定项方面为您提供了很大的灵 active ,因此您可以创建您认为方便的任何初始值设定项。

您通常希望避免使用实际的函数而不是类内的方法。

关于objective-c - 设置嵌套对象?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1709486/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com