bookcount.java
来自「这是一个购物车系统」· Java 代码 · 共 20 行
JAVA
20 行
package shoppcart;
public class BookCount {
private int count;
private String productID;
public BookCount() { }
public void setCount(int count){
this.count=count;
}
public int getCount(){
return this.count;
}
public String getProductID(){
return this.productID;
}
public void setProductID(String ID){
this.productID=ID;
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?