通過另類的泛型約束將兩個輸入輸出參數不同的方法合併成一個方法的實現

来源:http://www.cnblogs.com/VAllen/archive/2017/08/04/Merge-methods-with-diff-parameters.html
-Advertisement-
Play Games

其實我也不知道如何定義這個標題,詞乏,姑且先這樣定義吧。 看了本文章的朋友,如果有更好標題,請告訴我,謝謝。 有個項目使用SDK時遇到這樣一個情況。 該SDK有個BtPrinterManager類,擁有兩個方法:ServerPrint和ClientPrint,這兩個方法有一部分參數是一樣的,一部分參 ...


 其實我也不知道如何定義這個標題,詞乏,姑且先這樣定義吧。

看了本文章的朋友,如果有更好標題,請告訴我,謝謝。

 

有個項目使用SDK時遇到這樣一個情況。

該SDK有個BtPrinterManager類,擁有兩個方法:ServerPrint和ClientPrint,這兩個方法有一部分參數是一樣的,一部分參數不一樣

現在我們要對這個類進行封裝,把這兩個方法合併成一個方法,並且使其擁有相同的輸入參數和輸出參數

比較粗糙的做法是,把這兩個方法的輸入參數合併成一個輸入模型類,把兩個方法的輸出參數也合併成一個輸出模型類。

通過增加一個參數或(判斷某個方法專屬參數是否有值)在方法內部決定應該調用ServerPrint還是ClientPrint,以及應該從輸入模型類里取哪些參數,應該賦哪些值給輸出模型類。

如果不按照上面的做法寫,還有什麼辦法可以做到呢?

答案是有的,泛型約束+方法內對泛型實際類型判斷。

 

以下是實現代碼:

  1 using System;
  2 
  3 namespace Test
  4 {
  5     internal class Program
  6     {
  7         private static void Main(string[] args)
  8         {
  9             Run();
 10             
 11             Console.ReadKey();
 12         }
 13 
 14         private static void Run()
 15         {
 16             PrinterManager clientManager = new ClientPrinterManager();
 17             ClientInputModel clientInputModel = new ClientInputModel();
 18             //clientInputModel對象賦值....
 19             Action<ClientOutputModel> clientAction = info => { Console.WriteLine(info.PrinterName + info.ClientName); };
 20             clientManager.Print(clientInputModel, clientAction);
 21 
 22             PrinterManager serverManager = new ServerPrinterManager();
 23             ClientInputModel serverInputModel = new ClientInputModel();
 24             //serverInputModel對象賦值....
 25             Action<ServerOutputModel> serverAction = info => { Console.WriteLine(info.PrinterName + info.ServerName); };
 26             serverManager.Print(serverInputModel, serverAction);
 27         }
 28     }
 29 
 30     /// <summary>
 31     /// 列印管理類
 32     /// </summary>
 33     public abstract class PrinterManager
 34     {
 35         /// <summary>
 36         /// 列印文件
 37         /// </summary>
 38         /// <typeparam name="TInputModel"></typeparam>
 39         /// <typeparam name="TOutputModel"></typeparam>
 40         /// <param name="model"></param>
 41         /// <param name="action"></param>
 42         /// <returns></returns>
 43         public abstract string Print<TInputModel, TOutputModel>(TInputModel model, Action<TOutputModel> action) where TInputModel : InputModelBase, new() where TOutputModel : OutputModelBase, new();
 44     }
 45 
 46     /// <summary>
 47     /// 客戶端列印管理類
 48     /// </summary>
 49     public class ClientPrinterManager : PrinterManager
 50     {
 51         public override string Print<TInputModel, TOutputModel>(TInputModel model, Action<TOutputModel> action)
 52         {
 53             string message = string.Empty;
 54 
 55             #region 泛型類型校驗
 56             if (typeof(TInputModel) != typeof(ClientInputModel))
 57             {
 58                 throw new ArgumentException($"{nameof(TInputModel)} generic types must be of type {nameof(ClientInputModel)}", nameof(ClientInputModel));
 59             }
 60 
 61             if (typeof(TOutputModel) != typeof(ClientOutputModel))
 62             {
 63                 throw new ArgumentException($"{nameof(TOutputModel)} generic types must be of type {nameof(ClientOutputModel)}", nameof(ClientOutputModel));
 64             }
 65             #endregion
 66 
 67             #region 這裡假裝是調用某SDK方法獲取的結果
 68 
 69             //BtPrinter printer = new BtPrinter();
 70             //string message;
 71             //var info = printer.ClientPrint(model.Param1, model.Param2, model.Param1, model.ClientParam1, out message);
 72 
 73             var info = new ClientOutputModel
 74             {
 75                 PrinterName = "Test Printer",
 76                 ClientName = "Test Client"
 77             };
 78             message = "ClientPrint Success";
 79 
 80             #endregion
 81 
 82             TOutputModel result = (TOutputModel)Convert.ChangeType(info, typeof(TOutputModel));
 83             action(result);
 84 
 85             return message;
 86         }
 87     }
 88 
 89     /// <summary>
 90     /// 伺服器端列印管理類
 91     /// </summary>
 92     public class ServerPrinterManager : PrinterManager
 93     {
 94         public override string Print<TInputModel, TOutputModel>(TInputModel model, Action<TOutputModel> action)
 95         {
 96             string message = string.Empty;
 97 
 98             #region 泛型類型校驗
 99             if (typeof(TInputModel) != typeof(ServerInputModel))
100             {
101                 throw new ArgumentException($"{nameof(TInputModel)} generic types must be of type {nameof(ServerInputModel)}", nameof(ServerInputModel));
102             }
103 
104             if (typeof(TOutputModel) != typeof(ServerOutputModel))
105             {
106                 throw new ArgumentException($"{nameof(TOutputModel)} generic types must be of type {nameof(ServerOutputModel)}", nameof(ServerOutputModel));
107             }
108             #endregion
109 
110             #region 這裡假裝是調用某SDK方法獲取的結果
111 
112             //BtPrinter printer = new BtPrinter();
113             //string message;
114             //var info = printer.ServerPrint(model.Param1, model.Param2, model.ServerParam1, model.ServerParam2, out message);
115 
116             var info = new ServerOutputModel
117             {
118                 PrinterName = "Test Printer",
119                 ServerName = "Test Server"
120             };
121             message = "ServerPrint Success";
122 
123             #endregion
124 
125             TOutputModel result = (TOutputModel)Convert.ChangeType(info, typeof(TOutputModel));
126             action(result);
127 
128             return message;
129         }
130     }
131 
132     #region 輸入模型類
133     public class InputModelBase
134     {
135         public string Param1 { get; set; }
136 
137         public string Param2 { get; set; }
138     }
139 
140     public class ClientInputModel : InputModelBase
141     {
142         public string ClientParam1 { get; set; }
143     }
144 
145     public class ServerInputModel : InputModelBase
146     {
147         public string ServerParam1 { get; set; }
148 
149         public string ServerParam2 { get; set; }
150     }
151     #endregion
152 
153     #region 輸出模型類
154     public class OutputModelBase
155     {
156         public string PrinterName { get; set; }
157     }
158 
159     public class ClientOutputModel : OutputModelBase
160     {
161         public string ClientName { get; set; }
162     }
163 
164     public class ServerOutputModel : OutputModelBase
165     {
166         public string ServerName { get; set; }
167     }
168     #endregion
169 }

 

如果有更好的方法實現,求指教,謝謝。


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

-Advertisement-
Play Games
更多相關文章
  • 目錄: 小孫想要總結這一年來學到的關於stm32的USB相關知識,但又不知道怎麼總結,於是決定 從頭開始調試固件庫代碼,直到實現USB功能為止! 首先準備參照正點原子《第88講 USB虛擬串口實驗-M3》,把HID相關庫包含進工程中,工 程選用正點原子的USART試驗。因為目前手裡的開發板是“微雪電 ...
  • 1,查看3306埠被什麼程式占用 lsof -i :3306 2,查看3306埠是被哪個服務使用著 netstat -tunlp | grep :3306 3,查看3306埠的是否已在使用中,可驗證使用該埠的服務是否已正常運行 netstat -an | grep :3306 ...
  • IdentityServer4 是一個提供 認證服務,單點登錄/登出(SSO),API訪問控制,聯合認證通道的可定製、免費商業支持的框架。 ...
  • nopCommerce 3.9 之 開發支付寶即時到賬插件,支持支付、全額退款、部分退款、支持多店鋪設置。 ...
  • 在業務系統開發中,對錶格記錄的查詢、分頁、排序等處理是非常常見的,在Web開發中,可以採用很多功能強大的插件來滿足要求,且能極大的提高開發效率,本隨筆介紹這個bootstrap-table是一款非常有名的開源表格插件,在很多項目中廣泛的應用。Bootstrap-table插件提供了非常豐富的屬性設置... ...
  • 二級功能變數名稱之間共用Cookie,很重要的一點就是配置,如下: domain設置為.ahdqxx.com,如果你的功能變數名稱是www.ahdqxx.com,mall.ahdqxx.com,那麼請設置你的domain為.ahdqxx.com path設置為/ <authentication mode="Form ...
  • 問題通常我們在設置子控制項的一些與外觀、佈局有關的屬性時,比如Size、Location、Anchor或Dock等,會激發子控制項的 Layout事件,並可能會引起視窗重繪。當子控制項較多時,如果頻繁設置上述屬性(例如在窗體的初始化代碼中),多個子控制項的Layout事件會引起視窗重繪效率問題,比如閃爍。特 ...
  • 貼一下自己序列化的代碼: 上面的寫法持續序列化不會有記憶體溢出的性能問題,之前一直被告知直接引用公司某位老鳥封裝好的dll來序列化,後來發現了老是出現記憶體溢出,貼一下它的錯誤寫法,僅供吸取教訓: 哎,老鳥趕時間的時候寫代碼都這麼隨意嗎?看到被註釋掉的try catch我猜測他曾經也覺得這裡有問題,不過 ...
一周排行
    -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.數據驗證 在伺服器端進行嚴格的數據驗證,確保接收到的數據符合預期格 ...