product.java
来自「A system to manage a grocery store with 」· Java 代码 · 共 26 行
JAVA
26 行
package grocerystore;
public class Product {
private String code;
private String desc;
private double price;
public Product(String code, String desc, double price){
this.code = code;
this.desc = desc;
this.price = price;
}
public double getPrice(){
return price;
}
public String getCode(){
return code;
}
public String getDesc(){
return desc;
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?