1700456572
1700456573
代码清单6-9 计算机书籍类
1700456574
1700456575
public class ComputerBook implements IComputerBook{
1700456576
1700456577
private String name;
1700456578
1700456579
private String scope;
1700456580
1700456581
private String author;
1700456582
1700456583
private int price;
1700456584
1700456585
public ComputerBook(String_name,int_price,String_author,String_scope){
1700456586
1700456587
this.name=_name;
1700456588
1700456589
this.price=_price;
1700456590
1700456591
this.author=_author;
1700456592
1700456593
this.scope=_scope;
1700456594
1700456595
}
1700456596
1700456597
public String getScope(){
1700456598
1700456599
return this.scope;
1700456600
1700456601
}
1700456602
1700456603
public String getAuthor(){
1700456604
1700456605
return this.author;
1700456606
1700456607
}
1700456608
1700456609
public String getName(){
1700456610
1700456611
return this.name;
1700456612
1700456613
}
1700456614
1700456615
public int getPrice(){
1700456616
1700456617
return this.price;
1700456618
1700456619
}
1700456620
1700456621
}
[
上一页 ]
[ :1.700456572e+09 ]
[
下一页 ]