music.java~3~
来自「音乐播放器 好像是用java编的 欢迎下载」· JAVA~3~ 代码 · 共 64 行
JAVA~3~
64 行
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 + =
减小字号Ctrl + -
显示快捷键?