⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 taxrate.java

📁 J2EE指南
💻 JAVA
字号:
package tax;  
public class TaxRate {  
String product;  
double rate;  
public TaxRate(){  
this.product = "A001";  
this.rate = 5;  
}  
public void setProduct (String ProductName) {  
this.product = ProductName;  
}  
public String getProduct() {  
return (this.product);  
}  
public void setRate (double rateValue) {  
this.rate = rateValue;  
}  
public double getRate () {  
return (this.rate);  
}  
}  

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -