product.java
来自「DAO模式写的购物车程序」· Java 代码 · 共 35 行
JAVA
35 行
package org.basket;
public class Product
{ private String id;
private String name;
private float price;
public Product(String id,String name,float price){
this.id=id;
this.name=name;
this.price=price;
}
public String getId(){
return this.id;
}
public void setId(String id){
this.id=id;
}
public String getName(){
return this.name;
}
public void setName(String name){
this.name=name;
}
public float getPrice(){
return this.price;
}
public void setPrice(float price){
this.price=price;
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?