真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

c#中擴展方法有哪些-創(chuàng)新互聯(lián)

這篇文章主要介紹了c#中擴展方法有哪些,具有一定借鑒價值,感興趣的朋友可以參考下,希望大家閱讀完這篇文章之后大有收獲,下面讓小編帶著大家一起了解一下。

成都創(chuàng)新互聯(lián)一直秉承“誠信做人,踏實做事”的原則,不欺瞞客戶,是我們最起碼的底線! 以服務(wù)為基礎(chǔ),以質(zhì)量求生存,以技術(shù)求發(fā)展,成交一個客戶多一個朋友!為您提供成都網(wǎng)站設(shè)計、成都網(wǎng)站制作、成都網(wǎng)頁設(shè)計、小程序開發(fā)、成都網(wǎng)站開發(fā)、成都網(wǎng)站制作、成都軟件開發(fā)、成都app軟件開發(fā)公司是成都本地專業(yè)的網(wǎng)站建設(shè)和網(wǎng)站設(shè)計公司,等你一起來見證!

簡介

擴展方法被定義為靜態(tài)方法,但它們是通過實例方法語法進行調(diào)用的。 它們的第一個參數(shù)指定該方法作用于哪個類型,并且該參數(shù)以 this 修飾符為前綴。 擴展方法當然不能破壞面向?qū)ο蠓庋b的概念,所以只能是訪問所擴展類的public成員。

擴展方法使您能夠向現(xiàn)有類型“添加”方法,而無需創(chuàng)建新的派生類型、重新編譯或以其他方式修改原始類型。擴展方法是一種特殊的靜態(tài)方法,但可以像擴展類型上的實例方法一樣進行調(diào)用。

C#擴展方法第一個參數(shù)指定該方法作用于哪個類型,并且該參數(shù)以 this 修飾符為前綴。

擴展方法的目的就是為一個現(xiàn)有類型添加一個方法,現(xiàn)有類型既可以是int,string等數(shù)據(jù)類型,也可以是自定義的數(shù)據(jù)類型。

一..net自帶擴展方法和自定義擴展方法

在使用linq時就能夠使用到很多.net自帶的擴展方法,比如where select等等

where的擴展方法定義 

public static IEnumerable Where(this IEnumerable source, Func predicate);

Select的擴展方法定義

public static IEnumerable Select(this IEnumerable source, Func selector);

(1)自己實現(xiàn)where和select的擴展方法

// where自實現(xiàn)
 public static IEnumerable ExtenSionWhere(this IEnumerable source, Func predicate)
 {
  if (source == null)
  {
  throw new Exception(nameof(source));
  }
  if (predicate == null)
  {
  throw new Exception(nameof(predicate));
  }
  List satisfySource = new List();
  foreach (var sou in source)
  {
  if (predicate(sou))
  {
   satisfySource.Add(sou);
  }
  }
  return satisfySource;
 }

 
 // select 自實現(xiàn)
 public static IEnumerable ExtenSionSelect(this IEnumerable source, Func selector)
 {
  if(source==null)
  {
  throw new Exception(nameof(source));
  }
  if(selector==null)
  {
  throw new Exception(nameof(source));
  }

  List resultList = new List();
  foreach(var sou in source)
  {
  resultList.Add(selector(sou));
  }
  return resultList;
 }

(2)自實現(xiàn)where和select調(diào)用

static void Main(string[] args)
 {
  List list = new List() { 1, 2, 3, 4, 5, 6 };
  
  //常規(guī)寫法
  var selectList = list.ExtenSionWhere(p => p > 3).ExtenSionSelect(p => p.ToString()).ToList();
 
  //自定義泛型委托寫法
  Func whereFunc = (num) => num > 3;
  Func selectFunc = (num) => num.ToString();
  var selectList1 = list.ExtenSionWhere(p => whereFunc(p)).ExtenSionSelect(p => selectFunc(p)).ToList();
 
 }

二.使用擴展方法實現(xiàn)鏈式編程

我在項目中經(jīng)常使用開源的Flurl進行http請求,在進行拼裝請求報文時,就會使用到鏈式編程

如下代碼所示

c#中擴展方法有哪些 

以上代碼就是使用了擴展方法進行鏈式編程,從而使得整個請求信息可以在一句代碼中體現(xiàn)出來

接下來,我們自己實現(xiàn)鏈式代碼

public static class ContextExtension
 {
  public static RectangleContext SetLength(this RectangleContext context,int num)
  {
   RectangleContext.Config.Length = num;
   return context;
  }

  public static RectangleContext SetWideth(this RectangleContext context, int num)
  {
   RectangleContext.Config.Wideth = num;
   return context;
  }
  public static RectangleContext SetHeight(this RectangleContext context, int num)
  {
   RectangleContext.Config.Height = num;
   return context;
  }
 }


 public class RectangleContext
 {
  public static RectangleContext Config=new RectangleContext();

  public int Length { get; set; }

  public int Wideth { get; set; }

  public int Height { get; set; }

 }

調(diào)用和執(zhí)行結(jié)果

 c#中擴展方法有哪些

總結(jié)

1.使用擴展方法能在不修改原有類型的基礎(chǔ)下,動態(tài)添加方法,這使得整個框架更具有靈活性

2.在使用上下文信息的時候,可以使用鏈式編程,使得調(diào)用時能夠在一句代碼中完成所有屬性設(shè)置

3.擴展方法不能濫用.添加擴展方法應當使用最小影響原則,即盡量不要在父類使用擴展方法,比如object,這將影響性能

感謝你能夠認真閱讀完這篇文章,希望小編分享的“c#中擴展方法有哪些”這篇文章對大家有幫助,同時也希望大家多多支持創(chuàng)新互聯(lián)成都網(wǎng)站設(shè)計公司,關(guān)注創(chuàng)新互聯(lián)成都網(wǎng)站設(shè)計公司行業(yè)資訊頻道,更多相關(guān)知識等著你來學習!

另外有需要云服務(wù)器可以了解下創(chuàng)新互聯(lián)scvps.cn,海內(nèi)外云服務(wù)器15元起步,三天無理由+7*72小時售后在線,公司持有idc許可證,提供“云服務(wù)器、裸金屬服務(wù)器、網(wǎng)站設(shè)計器、香港服務(wù)器、美國服務(wù)器、虛擬主機、免備案服務(wù)器”等云主機租用服務(wù)以及企業(yè)上云的綜合解決方案,具有“安全穩(wěn)定、簡單易用、服務(wù)可用性高、性價比高”等特點與優(yōu)勢,專為企業(yè)上云打造定制,能夠滿足用戶豐富、多元化的應用場景需求。


分享名稱:c#中擴展方法有哪些-創(chuàng)新互聯(lián)
當前URL:http://weahome.cn/article/icssg.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部