taxrate.java
来自「USB设计的一些源码!适合与USB开发的同学!还是蛮不错的!我用过一些!」· Java 代码 · 共 22 行
JAVA
22 行
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 + =
减小字号Ctrl + -
显示快捷键?