2

我尝试创建一种赋予协议 NSCopying 的复制方法。

我有以下课程:

@interface Gene : NSObject <NSCopying>
{

    int firstAllele;
    int secondAllele;

}

使用方法:

-(id) copyWithZone:(NSZone*) zone
{
    id clonedGene = [[[self class] allocWithZone:zone] initWithAllele1:first andAllele2:second];

    return clonedGene;
}

如果我通过以下方式调用该方法:

Gene* gene1 = [[Gene alloc]initWithAllele1:4 andAllele2:2];
Gene* gene2 = [gene1 copy];

它在调用gene1的复制方法时崩溃。

我必须以不同的方式调用该方法吗?

喜欢[gene1 copyWithZone:(NSZone *)],但我必须通过什么对象?我必须创建一个 NSZone 对象吗?还是有一个我可以作为参数传递的默认值?

感谢您的任何帮助

4

1 回答 1

2

我能够弄清楚:

我将 Gene 类更改为:

@interface Gene : NSObject 
{
    Allele * first;
    Allele * second;   
}

我还需要创建我添加的对象的副本,因此还需要确认复制协议的子对象:

-(id) copyWithZone:(NSZone*) zone  
{  
    id clonedGene = [[[self class] allocWithZone:zone] initWithAllele1:[first copy] andAllele2:[second copy]];   
    return clonedGene;  
}

所以我还必须定义一个

-(id) copyWithZone:(NSZone*) zone;

等位基因类中的方法:

-(id) copyWithZone:(NSZone*) zone  
{  
    id copiedAllele = [[[self class] allocWithZone:zone] initWithAllele:allele];    
    return copiedAllele;  
}

并且由于等位基因是枚举类型,因此不需要实现任何更深层次的复制方法(因为它是基本类型)。

所以如果我想实现一个深拷贝方法,我必须确保所有用作属性的类也实现了一个拷贝功能。

感谢您的帮助,我希望可以回答我自己的问题。

亲切的问候

于 2011-04-05T00:23:29.110 回答