📄 itemdata.java
字号:
public class ItemData
{
public int orderId;
public int qty;
public String sku = "junk";
public ItemData()
{
}
public ItemData(int orderId, int qty, String sku)
{
this.orderId = orderId;
this.qty = qty;
this.sku = sku;
}
public boolean equals(Object o)
{
ItemData id = (ItemData)o;
return orderId == id.orderId &&
qty == id.qty &&
sku.equals(id.sku);
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -