我自己在学习java,我想在我自己做的运动方面得到帮助。该类称为 Product ,用于表示小公司销售的产品。
应该可以存储有关每个产品的以下信息。该类应具有以下方法:
- 一个构造函数
- 返回商店中商品单位的方法
- 一种送货到商店的方法(增加本产品的单位)
- 一种退出商店的方法(减少该产品的单位)
请注意,如果其中一种方法更改了订购点下方的存储项目,则应打印一条消息。也应该不可能有负数量的项目。
我的方法有问题。请查看我的代码并给我一些提示。我会感谢所有的回应。谢谢你。
这是我的程序:
public class Product {
private int productNumber;
private String productName;
private float price;
private int orderPoint;
private int unitsInStore;
private String proDescription;
public Product(int num, String name, float price, int order, int units, String description){
this.productNumber = num;
this.productName = name;
this.price = price;
this.orderPoint = order;
this.unitsInStore = units;
this.proDescription = description;
}
public int getProductNumber() {
return productNumber;
}
public void setProductNumber(int productNumber) {
this.productNumber = productNumber;
}
public String getProductName() {
return productName;
}
public void setProductName(String productName) {
this.productName = productName;
}
public float getPrice() {
return price;
}
public void setPrice(float price) {
this.price = price;
}
public int getOrderPoint() {
return orderPoint;
}
public void setOrderPoint(int orderPoint) {
this.orderPoint = orderPoint;
}
// a method returns the units in store
public int getUnitsInStore() {
return unitsInStore;
}
public void setUnitsInStore(int unitsInStore) {
this.unitsInStore = unitsInStore;
}
public String getProDescription() {
return proDescription;
}
public void setProDescription(String proDescription) {
this.proDescription = proDescription;
}
public int deliveranceToStore(int store){
unitsInStore = unitsInStore + store;
return unitsInStore ++ ;
}
public int withdrawal(int store){
unitsInStore = store - unitsInStore;
return unitsInStore --;
}
}