亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

C# Fluent Interface怎么實現

發布時間:2021-12-03 10:12:13 來源:億速云 閱讀:137 作者:iii 欄目:編程語言

這篇文章主要介紹“C# Fluent Interface怎么實現”,在日常操作中,相信很多人在C# Fluent Interface怎么實現問題上存在疑惑,小編查閱了各式資料,整理出簡單好用的操作方法,希望對大家解答”C# Fluent Interface怎么實現”的疑惑有所幫助!接下來,請跟著小編一起來學習吧!

C# Fluent Interface代碼實現:

public interface IRect  {  void SetWidth(int width);  void SetHeight(int height);  }  public Rect : IRect  {  private int _width;  private int _height;  public void SetWidth(int width) { this._width = width; }  public void SetHeight(int height){ this_height = height; }  }  public static void Main(string [] args)  {  IRect rect = new Rect();  rect.SetHeight(10);  rect.SetWidth(50);  }

沒有什么花俏的東西,一個可設長寬的矩形接口并提供一個簡單實現。接下來看看用另一種方式

public interface IRectFluent  {  IRectFluent SetWidth(int width);  IRectFluent SetHeight(int height);  }  public RectFluent : IRectFluent  {  private int _width;  private int _height;  public IRectFluent SetWidth(int width) { this._width = width; return this; }  public IRectFluent SetHeight(int height){ this_height = height; return this; }  }  public static void Main(string [] args)  {  IRectFluent rect = new RectFluent();  rect.SetHeight(10).SetWidth(50);  // checkpoint  }

這種“鏈式"方法調用方式是不是更接近我們人腦的思維方式,更簡潔呢。沒錯, It's Fluent Interface。

個人理解的Fluent Interface 就是 在面向對象編程中,使用某種方式(通常但不限于使用 方法鏈方式)來實現更具可讀性,易用性的編程方式。而方法鏈的關鍵之處就是在方法內部調用***要返回調用者本身。

所謂Fluent借助于wikipedia的說法就是‘This style is beneficial due to its ability to provide a more fluid feel to the code."
說到這里,經常使用jquery的朋友肯定感覺很熟悉上面的使用方式。

沒錯,類似于 $('id').show().css('').fadeOut(); 這種就是一種Fluent Interface實現。

到此,關于“C# Fluent Interface怎么實現”的學習就結束了,希望能夠解決大家的疑惑。理論與實踐的搭配能更好的幫助大家學習,快去試試吧!若想繼續學習更多相關知識,請繼續關注億速云網站,小編會繼續努力為大家帶來更多實用的文章!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

婺源县| 绥滨县| 泸西县| 临清市| 嘉鱼县| 华容县| 兴仁县| 炎陵县| 淅川县| 海伦市| 南丹县| 定陶县| 昌都县| 桦川县| 新龙县| 云梦县| 唐山市| 肇州县| 平江县| 留坝县| 瑞昌市| 桃江县| 荥经县| 淮北市| 桂平市| 桂林市| 沧州市| 阿荣旗| 抚松县| 山西省| 如皋市| 伊金霍洛旗| 武川县| 探索| 沅陵县| 资溪县| 莱芜市| 昌平区| 中卫市| 娄底市| 新疆|