java設計模式之模板方法


轉載請注明出處:http://blog.csdn.net/guolin_blog/article/details/8744002

今天你還是像往常一樣來上班,一如既往地開始了你的編程工作。

項目經理告訴你,今天想在服務器端增加一個新功能,希望寫一個方法,能對Book對象進行處理,將Book對象的所有字段以XML格式進行包裝,這樣以后可以方便與客戶端進行交互。並且在包裝開始前和結束后要打印日志,這樣方便調試和問題定位。

沒問題!你覺得這個功能簡直是小菜一碟,非常自信地開始寫起代碼。

Book對象代碼如下:

[java]  view plain copy
  1. public class Book {  
  2.   
  3.     private String bookName;  
  4.   
  5.     private int pages;  
  6.   
  7.     private double price;  
  8.   
  9.     private String author;  
  10.   
  11.     private String isbn;  
  12.   
  13.     public String getBookName() {  
  14.         return bookName;  
  15.     }  
  16.   
  17.     public void setBookName(String bookName) {  
  18.         this.bookName = bookName;  
  19.     }  
  20.   
  21.     public int getPages() {  
  22.         return pages;  
  23.     }  
  24.   
  25.     public void setPages(int pages) {  
  26.         this.pages = pages;  
  27.     }  
  28.   
  29.     public double getPrice() {  
  30.         return price;  
  31.     }  
  32.   
  33.     public void setPrice(double price) {  
  34.         this.price = price;  
  35.     }  
  36.   
  37.     public String getAuthor() {  
  38.         return author;  
  39.     }  
  40.   
  41.     public void setAuthor(String author) {  
  42.         this.author = author;  
  43.     }  
  44.   
  45.     public String getIsbn() {  
  46.         return isbn;  
  47.     }  
  48.   
  49.     public void setIsbn(String isbn) {  
  50.         this.isbn = isbn;  
  51.     }  
  52.   
  53. }  

 

然后寫一個類專門用於將Book對象包裝成XML格式:

[java]  view plain copy
  1. public class Formatter {  
  2.   
  3.     public String formatBook(Book book) {  
  4.         System.out.println("format begins");  
  5.         String result = "";  
  6.         result += "<book_name>" + book.getBookName() + "</book_name>\n";  
  7.         result += "<pages>" + book.getPages() + "</pages>\n";  
  8.         result += "<price>" + book.getPrice() + "</price>\n";  
  9.         result += "<author>" + book.getAuthor() + "</author>\n";  
  10.         result += "<isbn>" + book.getIsbn() + "</isbn>\n";  
  11.         System.out.println("format finished");  
  12.         return result;  
  13.     }  
  14.   
  15. }  

調用代碼如下:

[java]  view plain copy
  1. public class Test {  
  2.       
  3.     public static void main(String[] args) throws Exception {  
  4.         Book book = new Book();  
  5.         book.setBookName("Thinking in Java");  
  6.         book.setPages(880);  
  7.         book.setPrice(68);  
  8.         book.setAuthor("Bruce Eckel");  
  9.         book.setIsbn("9787111213826");  
  10.         Formatter formatter = new Formatter();  
  11.         String result = formatter.formatBook(book);  
  12.         System.out.println(result);  
  13.     }  
  14.   
  15. }  

你寫好了之后,迫不及待地開始運行,運行結果也完全符合你的期望。

項目經理看完后,對你非常滿意,小伙效率很高的嘛!你也非常的得意。

不過兩天之后,項目經理又找到了你,他說之前沒有考慮到需要交互的客戶端還包括手機設備,而手機設備都比較吃流量,用XML格式來傳輸太耗流量了,想最好能改成使用JSON格式傳輸。但是之前的XML格式也要保留,最好可以由客戶端指定使用哪種格式。

你有些不開心,心里低估着,為什么一開始不考慮周全呢,現在又要改遺留代碼。但對方畢竟是領導,你還是要服從命令的,於是你開始修改Formatter類:

[java]  view plain copy
  1. public class Formatter {  
  2.   
  3.     public static final int XML = 0;  
  4.   
  5.     public static final int JSON = 1;  
  6.   
  7.     public String formatBook(Book book, int format) {  
  8.         System.out.println("format begins");  
  9.         String result = "";  
  10.         if (format == XML) {  
  11.             result += "<book_name>" + book.getBookName() + "</book_name>\n";  
  12.             result += "<pages>" + book.getPages() + "</pages>\n";  
  13.             result += "<price>" + book.getPrice() + "</price>\n";  
  14.             result += "<author>" + book.getAuthor() + "</author>\n";  
  15.             result += "<isbn>" + book.getIsbn() + "</isbn>\n";  
  16.         } else if (format == JSON) {  
  17.             result += "{\n";  
  18.             result += "\"book_name\" : \"" + book.getBookName() + "\",\n";  
  19.             result += "\"pages\" : \"" + book.getPages() + "\",\n";  
  20.             result += "\"price\" : \"" + book.getPrice() + "\",\n";  
  21.             result += "\"author\" : \"" + book.getAuthor() + "\",\n";  
  22.             result += "\"isbn\" : \"" + book.getIsbn() + "\",\n";  
  23.             result += "}";  
  24.         }  
  25.         System.out.println("format finished");  
  26.         return result;  
  27.     }  
  28.   
  29. }  

 

調用代碼如下:

[java]  view plain copy
  1. public class Test {  
  2.   
  3.     public static void main(String[] args) throws Exception {  
  4.         Book book = new Book();  
  5.         book.setBookName("Thinking in Java");  
  6.         book.setPages(880);  
  7.         book.setPrice(68);  
  8.         book.setAuthor("Bruce Eckel");  
  9.         book.setIsbn("9787111213826");  
  10.         Formatter formatter = new Formatter();  
  11.         String result = formatter.formatBook(book, Formatter.XML);  
  12.         System.out.println(result);  
  13.         result = formatter.formatBook(book, Formatter.JSON);  
  14.         System.out.println(result);  
  15.     }  
  16.   
  17. }  

再次運行程序,得到了以下結果。

項目經理看到運行結果后開心地說:“太好了,這正是我想要的!” 

可是你這次卻沒有那么開心,你覺得代碼已經有些混亂了,XML格式的邏輯和JSON格式的邏輯混淆在一起,非常不利於閱讀,而且如果以后還需要擴展功能也會非常困難。好在傳輸格式一般也就XML和JSON了,應該不會再有什么擴展了,你這樣安慰自己道。

 

但幻想總會被現實打破,“我最近聽說有個YAML格式挺好玩的.......” 項目經理說道。這個時候你已經有想打人的沖動了!!!

 

很多時候就是這樣,在公司里寫的代碼亂七八糟,質量極差,很大一部分原因就是因為需求變來變去。我們不斷在原有代碼基礎上補充各種后續加入的情況,在一行行新增的if語句下面,我們的代碼變得不堪入目。當然,我們作為程序員,對於需求這種東西沒有太多的話語權,在這方面我們無能為力。但是我們可以盡量地把程序的架構設計好,讓我們寫出的代碼更具有擴展性,這樣就可以應對各種需求變更了。

 

下面你將要使用23種設計模式中的模板方法來改進以上程序。

首先將Formatter中的代碼進行修改,如下所示:

[java]  view plain copy
  1. public abstract class Formatter {  
  2.   
  3.     public String formatBook(Book book, int format) {  
  4.         beforeFormat();  
  5.         String result = formating(book);  
  6.         afterFormat();  
  7.         return result;  
  8.     }  
  9.   
  10.     protected void beforeFormat() {  
  11.         System.out.println("format begins");  
  12.     }  
  13.   
  14.     protected abstract String formating(Book book);  
  15.   
  16.     protected void afterFormat() {  
  17.         System.out.println("format finished");  
  18.     }  
  19.   
  20. }  

你會發現format_book方法只有四步,第一步調用before_format,去打印格式轉換前的日志。第二步調用formating,這個方法是個抽象方法,用於處理具體的轉換邏輯,因此每一個繼承自Formatter的子類都需要重寫此方法,來實現各自的轉換邏輯。第三步調用after_format,去打印格式轉換后的日志。第四步返回result。由於類中存在了抽象方法,我們也就需要把Formatter聲明成抽象類。

 

然后要定義專門的子類來處理每種傳輸格式的具體邏輯,這樣不同傳輸格式的邏輯可以從一個方法里分離開,明顯便於閱讀和理解。

定義類XMLFormatter繼承自Formatter,里面加入處理XML格式的具體邏輯:

[java]  view plain copy
  1. public class XMLFormatter extends Formatter {  
  2.   
  3.     @Override  
  4.     protected String formating(Book book) {  
  5.         String result = "";  
  6.         result += "<book_name>" + book.getBookName() + "</book_name>\n";  
  7.         result += "<pages>" + book.getPages() + "</pages>\n";  
  8.         result += "<price>" + book.getPrice() + "</price>\n";  
  9.         result += "<author>" + book.getAuthor() + "</author>\n";  
  10.         result += "<isbn>" + book.getIsbn() + "</isbn>\n";  
  11.         return result;  
  12.     }  
  13.   
  14. }  

 

定義類JSONFormatter繼承自Formatter,里面加入處理JSON格式的具體邏輯:

[java]  view plain copy
  1. public class JSONFormatter extends Formatter {  
  2.   
  3.     @Override  
  4.     protected String formating(Book book) {  
  5.         String result = "";  
  6.         result += "{\n";  
  7.         result += "\"book_name\" : \"" + book.getBookName() + "\",\n";  
  8.         result += "\"pages\" : \"" + book.getPages() + "\",\n";  
  9.         result += "\"price\" : \"" + book.getPrice() + "\",\n";  
  10.         result += "\"author\" : \"" + book.getAuthor() + "\",\n";  
  11.         result += "\"isbn\" : \"" + book.getIsbn() + "\",\n";  
  12.         result += "}";  
  13.         return result;  
  14.     }  
  15.   
  16. }  

最后調用代碼如下:

[java]  view plain copy
  1. public class Test {  
  2.   
  3.     public static void main(String[] args) throws Exception {  
  4.         Book book = new Book();  
  5.         book.setBookName("Thinking in Java");  
  6.         book.setPages(880);  
  7.         book.setPrice(68);  
  8.         book.setAuthor("Bruce Eckel");  
  9.         book.setIsbn("9787111213826");  
  10.         XMLFormatter xmlFormatter = new XMLFormatter();  
  11.         String result = xmlFormatter.formatBook(book);  
  12.         System.out.println(result);  
  13.         JSONFormatter jsonFormatter = new JSONFormatter();  
  14.         result = jsonFormatter.formatBook(book);  
  15.         System.out.println(result);  
  16.     }  
  17.   
  18. }  

 

運行之后,你會發現運行結果和修改前代碼的運行結果完全相同。但是使用模板方法之后,代碼的可讀性有了很大的提高,因為處理格式轉換的代碼都放到了各自的類當中,而不是全部塞進一個方法中。並且在擴展性上也有了很大的提升,比如你開始感興趣項目經理說的YAML格式了。

 

定義類YAMLFormatter繼承自Formatter,里面加入處理YAML格式的具體邏輯:

[java]  view plain copy
  1. public class YAMLFormatter extends Formatter {  
  2.   
  3.     @Override  
  4.     protected String formating(Book book) {  
  5.         String result = "";  
  6.         result += "book_name: " + book.getBookName() + "\n";  
  7.         result += "pages: " + book.getPages() + "\n";  
  8.         result += "price: " + book.getPrice() + "\n";  
  9.         result += "author: " + book.getAuthor() + "\n";  
  10.         result += "isbn: " + book.getIsbn() + "\n";  
  11.         return result;  
  12.     }  
  13.   
  14. }  

 

調用代碼只需要加入:

[java]  view plain copy
  1. YAMLFormatter yamlFormatter = new YAMLFormatter();  
  2. String result = yamlFormatter.formatBook(book);  
  3. System.out.println(result);  

好了,令人頭疼的YAML格式就這樣被支持了,只需要在調用的時候決定是實例化XMLFormatter,JSONFormatter還是YAMLFormatter,就可以按照相應的規格進行格式轉換了。而且整體的代碼很有條理,看起來也很舒心。這個時候,你會輕松地向項目經理調侃一句,還有需要支持的格式嗎?

 

模板方法: 定義一個操作中的算法的骨架,而將一些步驟延遲到子類中,模板方法使得子類可以不改變一個算法的結構即可重定義該算法的某些特定步驟。


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM