生活随笔
收集整理的這篇文章主要介紹了
《研磨设计模式》chap22 装饰模式Decorator(4)AOP+总结
小編覺得挺不錯的,現(xiàn)在分享給大家,幫大家做個參考.
1. AOP面向方面編程
共性功能
AOP調用示意圖
public class SaleModel { private String goods
; //銷售的商品 public String getGoods() {return goods
;}public void setGoods(String goods) {this.goods = goods
;} public String toString(){return
"商品名稱="+goods+
",購買數(shù)量="+saleNum
;}
}public interface GoodsSaleEbi {//保存銷售信息,本來銷售數(shù)據(jù)應該是多條,太麻煩了,為了演示,簡單點 public boolean
sale(String user,String customer,SaleModel saleModel
);
}public class GoodsSaleEbo implements GoodsSaleEbi{ public boolean sale(String user,String customer, SaleModel saleModel) {System.out.
println(user+
"保存了"+customer+
"購買 "+saleModel+
" 的銷售數(shù)據(jù)");return true
;}
}public abstract class Decorator implements GoodsSaleEbi{ protected GoodsSaleEbi ebi
; //持有被裝飾的組件對象 public Decorator(GoodsSaleEbi ebi){this.ebi = ebi
;}
}//實現(xiàn)權限控制
public class CheckDecorator extends Decorator{public CheckDecorator(GoodsSaleEbi ebi){super(ebi
);} public boolean sale(String user,String customer, SaleModel saleModel) {//簡單點,只讓張三執(zhí)行這個功能if(!"張三".equals(user)){System.out.
println("對不起"+user+
",你沒有保存銷售單的權限");//就不再調用被裝飾對象的功能了return false
;}else{return this.ebi.
sale(user, customer, saleModel
);} }
}public class LogDecorator extends Decorator{public LogDecorator(GoodsSaleEbi ebi){super(ebi
);}public boolean sale(String user,String customer, SaleModel saleModel) {//執(zhí)行業(yè)務功能boolean f = this.ebi.
sale(user, customer, saleModel
);//在執(zhí)行業(yè)務功能過后,記錄日志DateFormat df = new
SimpleDateFormat("yyyy-MM-dd HH:mm:ss SSS");System.out.
println("日志記錄:"+user+
"于"+df.
format(new
Date())+
"時保存了一條銷售記錄,客戶是"+customer+
",購買記錄是"+saleModel
);return f
;}
}public class Client {public static void main(String[] args) {//得到業(yè)務接口,組合裝飾器GoodsSaleEbi ebi = new
CheckDecorator(new
LogDecorator(new
GoodsSaleEbo()));//準備測試數(shù)據(jù)SaleModel saleModel = new
SaleModel();saleModel.
setGoods("Moto手機");saleModel.
setSaleNum(2
);//調用業(yè)務功能ebi.
sale("張三",
"張三豐", saleModel
);ebi.
sale("李四",
"張三豐", saleModel
);}
}
2. 總結
2.1 優(yōu)點
- 比繼承更靈活
.從為對象添加功能的角度來看,裝飾模式比繼承更靈活。繼承是靜態(tài)的,而且一旦繼承所有子類都有一樣的功能。而裝飾模式采用把功能分離到每個裝飾器當中,然后通過對象組合的方式,在運行時動態(tài)地組合功能,每個被裝飾的對象最終有哪些功能,是由運行期動態(tài)組合的功能來決定的。 - 更容易復用功能
裝飾模式把一系列復雜的功能分散到每個裝飾器當中,一般一個裝飾器只實現(xiàn)一個功能,使實現(xiàn)裝飾器變得簡單,更重要的是這樣有利于裝飾器功能的復用,可以給一個對象增加多個同樣的裝飾器,也可以把一個裝飾器用來裝飾不同的對象,從而實現(xiàn)復用裝飾器的功能。
簡化高層定義
2.2 缺點
會產生很多細粒度對象。
2.3 裝飾模式的本質:動態(tài)組合
總結
以上是生活随笔為你收集整理的《研磨设计模式》chap22 装饰模式Decorator(4)AOP+总结的全部內容,希望文章能夠幫你解決所遇到的問題。
如果覺得生活随笔網(wǎng)站內容還不錯,歡迎將生活随笔推薦給好友。