📄 cp.java
字号:
package changpian;
public class CP {
String name="";
String artist="";
String country="";
float price=0;
int quantity=0;
public void setName(String name) {
this.name=name;
}
public String getName() {
return name;
}
public void setArtist(String artist) {
this.artist= artist;
}
public String getArtist() {
return artist;
}
public void setCountry(String country) {
this.country=country;
}
public String getCountry() {
return country;
}
public void setPrice(float price) {
this.price=price;
}
public float getPrice() {
return price;
}
public void setQuantity(int quantity) {
this.quantity= quantity;
}
public int getQuantity() {
return quantity;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -