?? ware.java
字號:
package BookShop;
public class Ware{
private String id;
private String name;
private int quantity;
private float price;
private float countprice;
public Ware(){
id="";
price=0;
quantity=0;
countprice=0;
}
public void setId (String id){
this.id=id;
}
public String getId(){
return id;
}
public void setName (String name){
this.name=name;
}
public String getName(){
return name;
}
public void setCountprice(float countprice){
this.countprice=countprice;
}
public float getCountprice(){
return countprice;
}
public void setPrice(float price){
this.price=price;
}
public float getPrice(){
return price;
}
public void setQuantity (int quantity){
this.quantity=quantity;
}
public int getQuantity(){
return quantity;
}
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -