cp.java
来自「Servlet初步知识掌握」· Java 代码 · 共 40 行
JAVA
40 行
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 + =
减小字号Ctrl + -
显示快捷键?