【翻譯】設計模式學習系列1---【Design Patterns Simplified: Part 1【設計模式簡化:第一部分】】

来源:http://www.cnblogs.com/caofangsheng/archive/2016/05/20/5512940.html
-Advertisement-
Play Games

http://www.c-sharpcorner.com/UploadFile/19b1bd/design-patterns-simplified-part1/ Design Patterns Simplified: Part 1【設計模式簡化:第一部分】 http://www.c-sharpcor ...


http://www.c-sharpcorner.com/UploadFile/19b1bd/design-patterns-simplified-part1/

Design Patterns Simplified: Part 1【設計模式簡化:第一部分】

 

 

Design patterns are an important consideration when designing or developing any software systems or solutions. There is so much buzz around patterns. At the same time, we often get confused about their use. Basically we get questions like the following:

        在設計或者開發任何軟體解決方案的時候,設計模式是一個重要的考慮因素。有這麼多都圍繞著設計模式,我們通常就會很疑惑關於設計模式的使用。基本上,我們的問題有下麵這些:

  •  What design patterns are【什麼是設計模式】
  •  Why to use them【為什麼要使用設計模式】
  •  When to use them【什麼時候使用設計模式】
  •  How many patterns we have【總共有多少設計模式】
In the first part of the series around design patterns, we will try to discuss and answer these questions. 在設計模式系列的第一部分,我們將會來討論和回答這些問題。

What design patterns are【什麼是設計模式】

Design patterns are basically proven solutions to common design problems. They can also be defined as recommended practices to solve any recurring problem in application design.

設計模式基本上是常見的設計問題的解決方案。他們同樣可以作為程式設計過程中反覆出現的問題的解決方案。

Please be clear that, design patterns are not ready-to-use code that can be used directly, instead they present approaches or recommendations to solve daily design challenges.

請清楚,設計模式不是現成的代碼,可以直接使用,相反,對於日常設計中出現的挑戰, 設計模式被用來提供方法或者建議。

Why to use them【為什麼要使用設計模式】

The reason for usign them is simple. Why re-invent the wheel, when we have workable, tested and well documented solutions for a set of common recurring problems?

       使用設計模式的原因很簡單。為什麼,要重覆造輪子?對於一系列反覆出現的問題,我們是否有可行的,容易測試的,並且有書面形式的解決方案麽?

We should use design patterns (when required) to design and develop reusable and scalable components that in turn helps the development team to finish the development activities in due time while attaining high quality.

       我們應該使用設計模式(在需要的時候)來設計和開發可重用和可擴展的組件,反過來幫助開發團隊在規定的時間內,高效,有質量地完成開發任務。

Designing an application in a standard or tested fashion also helps other developers and code reviewers to understand the written code easily.

以一個標準設計應用程式,同樣是幫助其他的開發者和代碼Review人員更好的測試並理解代碼是怎麼寫的。

 

When to use them【什麼時候使用設計模式】


 

This is a very pertinent issue and we should be well aware of their usefulness. Using design patterns without evaluating them properly can make the design unnecessarily complex.

       這是一個非常中肯的問題,我們應該清楚設計模式的適用性。使用設計模式的時候,沒有很好的評估,將會使得設計變得不必要的複雜。

There could be instances when you might not need them at all and you can simply live with basic OOP design principles.

   可能存在這樣的情況:你可能不需要設計模式,你可以簡單地使用基本的面向對象設計原則。

Whether to use them or not depends on the scenario at hand. Each pattern talks about specific design problems and the standard solution for that. So before using them, spend a fair amount of time in analyzing your design issues and try to match it with the once-discussed in patterns.

是否使用設計模式,取決於你的實際情況。每個模式討論特定的設計問題和標準的解決方案。所以在使用它們之前,花點時間,來分析你的設計問題,試圖使用一種設計模式來與之對應,那麼就可以使用這個模式,來解決你的設計問題了。

I would like to emphasize the point that the key to find the right pattern is to understand and identify the scenario that any pattern is trying to address.

我想強調一點,找到合適的模式的關鍵是理解和識別用什麼設計模式來解決問題。

Once you find the right pattern for your specific problem or scenario, you can apply it to your software design.

只要你發現了適用你的問題的模式,你就可以應用它,來解決你的軟體設計出現的問題。

The many patterns【總共有多少設計模式】

There is no specific number of patterns, since they kind of evolve over time and the software industry has used and tested them. Having said that, there are folks like the “Gang of Four” that have well-documented and popularized them in the software development community. I also find SOLID design principles to be worth refer to.

這裡沒有固定數量的設計模式,因為軟體行業使用和測試的設計模式,隨時間而變化。說道這裡,例如“Gang of Four”在軟體社區很受歡迎。我也發現可靠的設計原則是值得參考的。

To summarize the discussion, I would like to say to start your design with a few basic design principles, like clean coding, loose coupling and modular design and so on and continue to evaluate design challenges with known and existing issues discussed in design patterns. After evaluation, if you find any matching pattern then go ahead and use it else stick to whatever you have designed.

       最後總結一下,我想說的是,開始考慮你的設計使用一些設計原則,例如,乾凈的Coding,松耦合,模塊化設計等等,並且在你面臨設計挑戰的時候,評估設計模式中已知和已經存在的問題。評估完之後,你會發現能夠解決你的問題的設計模式,那麼就趕緊使用,推翻你之前的設計。

One last thing. Please don't force your application to use design patterns. Instead use them only if it makes sense.

最後一件事,不要強制應用設計模式到你的程式中。只有當應用設計模式的時候,能夠解決問題,才去使用它。

I hope you have liked the article. Please share your comments.

我希望你喜歡這篇文章,請留下你的評論,謝謝~~~.


您的分享是我們最大的動力!

-Advertisement-
Play Games
更多相關文章
  • 責任鏈模式 使多個對象都有機會處理請求,從而避免請求的發送者和接受者之間的耦合關係。將這些對象連成一條鏈,並沿著這條鏈檢查該請求,並對其進行處理,或者將它傳遞給下一個對象。 責任鏈模式有兩個角色組成: 抽象處理者角色:它定義了一個處理請求的介面。當然對於鏈子的不同實現,也可以在這個角色中實現後繼鏈。 ...
  • 1單例設計模式 在一個類中只存在此類的唯一對象被共用。 2 類比 我們假設一個家庭裡面只有一個廁所WC,那個作為廁所類,WC在整個家庭裡面是唯一的,如果我們要去用WC,那麼家庭成員的人員應該排隊去用WC。 3 代碼 ...
  • 互聯網的發展,網站應用的規模不斷擴大,常規的垂直應用架構已無法應對,分散式服務架構以及流動計算架構勢在必行,Dubbo是一個分散式服務框架,在這種情況下誕生的。現在核心業務抽取出來,作為獨立的服務,使前端應用能更快速和穩定的響應。 第一:介紹Dubbo背景 大規模服務化之前,應用可能只是通過RMI或 ...
  • 原創文章,同步發自 "作者個人博客" "http://www.jasongj.com/design_pattern/flyweight/" 。轉載請註明出處 享元模式介紹 享元模式適用場景 面向對象技術可以很好的解決一些靈活性或可擴展性問題,但在很多情況下需要在系統中增加類和對象的個數。當對象數量太 ...
  • 建造者模式:將一個複雜對象的構建與它的表示分離,使得同樣的構建過程可以創建不同的表示。(轉至《大話設計模式》)。 學習這個模式後,不知覺得和之前的簡單工廠模式做了對比,發現二者都是創建對象。但二者還是有所區別的,簡單工廠模式是更具不同的情況創建不同的對象, 而建造者模式則主要是用於創建一些複雜的對象 ...
  • 1.意圖 將一個類介面轉換成客戶希望的另外一個介面。Adapter模式使那些原本不能一起工作的類,可以一起工作。 2.別名 包裝器 Wrapper. 3.動機 一個應用可能會有一些類具有不同的介面,並且這些介面互不相容,可以專門定義一個類,用來適配互不相容的類。 4.適用性 你想使用一個已經存在的類 ...
  • 命令模式 將“請求”封裝成對象,以便使用不同的請求、隊列或者日誌來參數化其他對象。命令模式也支持可撤銷的操作。 說明: 1、命令模式將發出請求的對象和執行請求的對象解耦; 2、在被解耦的兩者之間是通過命令對象進行溝通的。命令對象封裝了接受者和一個或一組動作; 3、調用者通過調用命令對象的execut ...
  • 系統環境: centos6.7 jdk-7u79-linux-x64 apache-tomcat-7.0.57 apr-1.5.2 apr-util-1.5.4 一、tomcat安裝 二、測試 獲取下載地址 springmvc4 mybatis 整合 框架源碼 bootstrap html5 三、配 ...
一周排行
    -Advertisement-
    Play Games
  • 移動開發(一):使用.NET MAUI開發第一個安卓APP 對於工作多年的C#程式員來說,近來想嘗試開發一款安卓APP,考慮了很久最終選擇使用.NET MAUI這個微軟官方的框架來嘗試體驗開發安卓APP,畢竟是使用Visual Studio開發工具,使用起來也比較的順手,結合微軟官方的教程進行了安卓 ...
  • 前言 QuestPDF 是一個開源 .NET 庫,用於生成 PDF 文檔。使用了C# Fluent API方式可簡化開發、減少錯誤並提高工作效率。利用它可以輕鬆生成 PDF 報告、發票、導出文件等。 項目介紹 QuestPDF 是一個革命性的開源 .NET 庫,它徹底改變了我們生成 PDF 文檔的方 ...
  • 項目地址 項目後端地址: https://github.com/ZyPLJ/ZYTteeHole 項目前端頁面地址: ZyPLJ/TreeHoleVue (github.com) https://github.com/ZyPLJ/TreeHoleVue 目前項目測試訪問地址: http://tree ...
  • 話不多說,直接開乾 一.下載 1.官方鏈接下載: https://www.microsoft.com/zh-cn/sql-server/sql-server-downloads 2.在下載目錄中找到下麵這個小的安裝包 SQL2022-SSEI-Dev.exe,運行開始下載SQL server; 二. ...
  • 前言 隨著物聯網(IoT)技術的迅猛發展,MQTT(消息隊列遙測傳輸)協議憑藉其輕量級和高效性,已成為眾多物聯網應用的首選通信標準。 MQTTnet 作為一個高性能的 .NET 開源庫,為 .NET 平臺上的 MQTT 客戶端與伺服器開發提供了強大的支持。 本文將全面介紹 MQTTnet 的核心功能 ...
  • Serilog支持多種接收器用於日誌存儲,增強器用於添加屬性,LogContext管理動態屬性,支持多種輸出格式包括純文本、JSON及ExpressionTemplate。還提供了自定義格式化選項,適用於不同需求。 ...
  • 目錄簡介獲取 HTML 文檔解析 HTML 文檔測試參考文章 簡介 動態內容網站使用 JavaScript 腳本動態檢索和渲染數據,爬取信息時需要模擬瀏覽器行為,否則獲取到的源碼基本是空的。 本文使用的爬取步驟如下: 使用 Selenium 獲取渲染後的 HTML 文檔 使用 HtmlAgility ...
  • 1.前言 什麼是熱更新 游戲或者軟體更新時,無需重新下載客戶端進行安裝,而是在應用程式啟動的情況下,在內部進行資源或者代碼更新 Unity目前常用熱更新解決方案 HybridCLR,Xlua,ILRuntime等 Unity目前常用資源管理解決方案 AssetBundles,Addressable, ...
  • 本文章主要是在C# ASP.NET Core Web API框架實現向手機發送驗證碼簡訊功能。這裡我選擇是一個互億無線簡訊驗證碼平臺,其實像阿裡雲,騰訊雲上面也可以。 首先我們先去 互億無線 https://www.ihuyi.com/api/sms.html 去註冊一個賬號 註冊完成賬號後,它會送 ...
  • 通過以下方式可以高效,並保證數據同步的可靠性 1.API設計 使用RESTful設計,確保API端點明確,並使用適當的HTTP方法(如POST用於創建,PUT用於更新)。 設計清晰的請求和響應模型,以確保客戶端能夠理解預期格式。 2.數據驗證 在伺服器端進行嚴格的數據驗證,確保接收到的數據符合預期格 ...