我在这里有这个对象:
public class ItemInfo {
String productName;
String rfidTagNumber;
String originalLocal;
String currentLocal;
double productPrice;
public ItemInfo(String name, String tag, String origLoc, String curLoc, double price) {
productName = name;
rfidTagNumber = tag;
originalLocal = origLoc;
currentLocal = curLoc;
productPrice = price;
}
我需要ItemInfo
在这里创建并引用一个对象:
public class ItemInfoNode {
ItemInfoNode next;
ItemInfoNode prev;
public ItemInfoNode(){
}
public void setInfo(ItemInfo info) {
}
public ItemInfo getInfo(){
return null;
}
public void setNext(ItemInfoNode node) {
}
public void setPrev(ItemInfoNode node) {
}
public ItemInfoNode getNext() {
return null;
}
public ItemInfoNode getPrev() {
return null;
}
}
我知道如何制作新对象,但我不太确定这是正确的,所以我省略了这一行,我如何只创建一个引用?
编辑:只是另一个小侧边栏,我有两个 ItemInfoNode 对象 next 和 prev 如上所示,我只是将构造函数留空吗?可以吗?我粘贴了课程的其余部分以显示功能,如果无论如何这将有助于答案。再次感谢!