打字猴:1.700456594e+09
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 }
1700456622
1700456623 这也很简单,实现IComputerBook就可以,而BookStore类没有做任何的修改,只是在static静态模块中增加一条数据,如代码清单6-10所示。
1700456624
1700456625 代码清单6-10 书店销售计算机书籍
1700456626
1700456627 public class BookStore{
1700456628
1700456629 private final static ArrayList<IBook>bookList=new ArrayList<IBook>();
1700456630
1700456631 //static静态模块初始化数据,实际项目中一般是由持久层完成
1700456632
1700456633 static{
1700456634
1700456635 bookList.add(new NovelBook(“天龙八部”,3200,“金庸”));
1700456636
1700456637 bookList.add(new NovelBook(“巴黎圣母院”,5600,“雨果”));
1700456638
1700456639 bookList.add(new NovelBook(“悲惨世界”,3500,“雨果”));
1700456640
1700456641 bookList.add(new NovelBook(“金瓶梅”,4300,“兰陵笑笑生”));
1700456642
1700456643 //增加计算机书籍
[ 上一页 ]  [ :1.700456594e+09 ]  [ 下一页 ]