📄 music.java~3~
字号:
package musicmgrsys;
public class Music {
private String format;
private String gerue;
private int rating;
private String evaluation;
private String title;
private String director;
private int year;
private String comments;
public Music() {
format = null;
gerue = null;
rating = 0;
evaluation = null;
title = null;
director = null;
year = 0;
comments = null;
}
public void setFormat(String f)
{
this.format = f;
}
public void setGerue(String g)
{
this.gerue = g;
}
public void setRating(int r)
{
this.rating = r;
}
public void setEvaluation(String e)
{
this.evaluation = e;
}
public void setTitle(String t)
{
this.title = t;
}
public void setDirector(String d)
{
this.director = d;
}
public void setYear(int y)
{
this.year = y;
}
public void setComments(String c)
{
this.comments = c;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -