gpt4 book ai didi

java - 为一个变量分配另一个变量的身份

转载 作者:行者123 更新时间:2023-12-02 01:47:54 25 4
gpt4 key购买 nike

我有一个 Item 类。每个 Item 对象都保存在 ItemNode 类的一个实例中。 ItemNode 是我的 CustomList 类中的一个内部类。

我的 Item 类有一个名为 amount 的属性。这是指用户拥有多少该类型的 Item

我的 ItemNode 类还有一个名为 amount 的属性。我希望 ItemNode 的 amount 属性始终等于它所保存的 Item 对象的 amount 属性。

换句话说,(ItemNode.amount == ItemNode.item.amount) 应该始终为 true,即使我稍后更改 itemNode.amount 的值上。

如何使 Java 对于 ItemNode.amountItem.amount 具有相同的标识?

我的 ItemNode 类:

/**
* Creates nodes to hold Item objects.
*/
private class ItemNode {
// the object being held by the node
private Item item;
// The type of the object
private String typeName;
// How many are owned by the player
private int amount;
// What the item-subclass's name is
private String itemName;
// the node after this
private ItemNode next;

ItemNode(Item item) {

this.data = item;
this.typeName = typeName;
this.itemName = item.getItemName();
this.amount = item.getAmount();
this.next = null;
}
}

最佳答案

不要为您的 ItemNode 类提供金额字段,因为这样做您将创建“并行字段”,并且必须努力确保它们保持同步,而实际上它们很容易不同步。相反,更简单的是,为您的 ItemNode 类提供一个公共(public) getAmount() 方法,该方法只需调用并返回其项目的 getAmount() 方法。如果您需要 setter 方法,则相同。请记住使您的代码尽可能防白痴。还要研究装饰器设计模式,因为这个问题似乎已部分解决。

public interface Amountable {

int getAmount();

void setAmount(int amount);

}

public class Item implements Amountable {
private int amount;

public Item(int amount) {
this.amount = amount;
}

@Override
public int getAmount() {
return amount;
}

@Override
public void setAmount(int amount) {
this.amount = amount;
}

}

public class ItemNode<T extends Amountable> implements Amountable {
private T item;

public ItemNode(T item) {
this.item = item;
}

@Override
public int getAmount() {
return item.getAmount();
}

@Override
public void setAmount(int amount) {
item.setAmount(amount);
}

public T getItem() {
return item;
}
}

关于java - 为一个变量分配另一个变量的身份,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53473789/

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