gpt4 book ai didi

带有数组的java clone()

转载 作者:行者123 更新时间:2023-11-30 08:38:19 25 4
gpt4 key购买 nike

我正在我的复制构造函数中尝试这个

protected int forca;
protected Spell []feitico;
public Picareta(final Picareta rValue)
{
super((Ferramenta)rValue);
this.forca=rValue.forca;
this.feitico=rValue.feitico.clone();
}

但是feitico有相同的引用而不是克隆数组中的对象

我真的需要克隆数组中的每个元素吗?还是我的 clone() for Spell 错误?

public Spell clone() throws CloneNotSupportedException
{
super.clone();
Spell temp= new Spell(this);
return temp;
}

或者这种方式是最好的(紧凑的)方式吗?

public Picareta(final Picareta rValue)
{
super((Ferramenta)rValue);
this.forca=rValue.forca;
this.feitico=new Spell[rValue.feitico.length];
for (int i=0;i<rValue.feitico.length;i++)
this.feitico[i]=new Spell(rValue.feitico[i]);
}

最佳答案

数组对象上的方法 .clone() 将克隆数组。这不会克隆其他对象,即数组中元素引用的对象。

你问的是"deep copy" or "deep clone" .创建一个新数组来保存新对象后,您需要遍历旧数组并克隆其中引用的每个对象:

this.feitico = new Spell[rValue.feitico.length];
for (int i = 0; i < this.feitico.length ; i += 1)
{
this.feitico[i] = rValue.feitico[i].clone();
}

关于带有数组的java clone(),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36631432/

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