📄 shoppingcartitem.java
字号:
package com.web.util;
public class ShoppingCartItem {
Object item ;
int quantity ;
public ShoppingCartItem(Object obj)
{
this.item = obj ;
this.quantity = 1 ;
}
public void setQuantity(int quantity)
{
this.quantity = quantity ;
}
public int getQuantity()
{
return this.quantity ;
}
public void increment()
{
this.quantity++ ;
}
public Object getItem() {
return item;
}
public void setItem(Object item) {
this.item = item;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -