📄 menu.java
字号:
package server;
public class menu
{
String strName;
float fPrice;
menu(String strName,float fPrice)
{
this.strName=strName;
this.fPrice=fPrice;
}
void setName(String strName)
{
this.strName=strName;
}
void setPrice(float fPrice)
{
this.fPrice=fPrice;
}
String getName()
{
return this.strName;
}
float getPrice()
{
return this.fPrice;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -