📄 studentg.java
字号:
public class StudentG implements java.io.Serializable
{
String number,chinese,math,english;
public StudentG()
{
}
public void setNumber(String number)
{
this.number=number;
}
public String getNumber()
{
return number;
}
public void setChinese(String chinese)
{
this.chinese=chinese;
}
public String getChinese()
{
return chinese;
}
public void setMath(String math)
{
this.math=math;
}
public String getMath()
{
return math;
}
public void setEnglish(String english)
{
this.english=english;
}
public String getEnglish()
{
return english;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -