📄 product.java
字号:
package mypackage;
public class Product
{
private String pname;
private int pid;
private float price;
public void setPname(String pname)
{
this.pname=pname;
}
public void setPid(int pid)
{
this.pid=pid;
}
public void setPrice(float price)
{
this.price=price;
}
public String getPname()
{
return this.pname;
}
public int getPid()
{
return this.pid;
}
public float getPrice()
{
return this.price;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -