📄 musicdata.java
字号:
package musicstore;
import java.io.Serializable;
public class MusicData implements Serializable {
String upc;
String title;
String artist;
String type;
float price;
public MusicData() {
this("upc", "title", "artist", "type", (float) 0);
}
public MusicData(String upc, String title,
String artist, String type, float price) {
this.upc = upc;
this.title = title;
this.artist = artist;
this.type = type;
this.price = price;
}
public String toString() {
return "[UPC = " + upc +
", Title = " + title +
", Artist = " + artist +
", Type = " + type +
", Price = " + price +
"]";
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -