C# 3.0新特性:扩展方法

开发 后端
本文介绍了c# 3.0新特性中如何使用扩展方法,并且列出了定义扩展方法的代码,希望对大家有用。

Extension Methods 使用扩展方法,使用的时候需要注意的地方

1.C# 3.0新特性中扩展方法所属的类必须为静态非泛型类,扩展方法也是静态方法

2.***个参数为被扩展的类型实例,并且必须用this进行修饰

3.第二个参数开始对对应被扩展类型实例所传递的参数列表,即扩展类型实例

传递的***个参数对应扩展方法定义的第二个参数,依次类推

4.C# 3.0新特性中被扩展类型实例可像调用类型内部定义的实例方法一样调用扩展方法

这里定义一个扩展方法:

  1. public static class Extensions  
  2.     {  
  3.         public static bool Compare(this Customer customer1, Customer customer2)  
  4.         {  
  5.             if (customer1.CustomerId == customer2.CustomerId &&  
  6.                 customer1.Name == customer2.Name &&  
  7.                 customer1.City == customer2.City)  
  8.             {  
  9.                 return true;  
  10.             }  
  11.  
  12.             return false;  
  13.         }  
  14.  
  15.     } 

其中Compare***个参数用this修饰

完整源码例子,这个例子主要查询新建的newCustomer是否在列表List中

  1. using System;  
  2. using System.Collections.Generic;  
  3. using System.Linq;  
  4. using System.Text;  
  5.  
  6. namespace NewLanguageFeatures  
  7. {  
  8.     public class Customer  
  9.     {  
  10.         public int CustomerId { getprivate set; }  
  11.  
  12.         public string Name { getset; }  
  13.         public string City { getset; }  
  14.  
  15.         public Customer(int Id)  
  16.         {  
  17.             CustomerId = Id;  
  18.         }  
  19.  
  20.         public override string ToString()  
  21.         {  
  22.             return Name + “\t” + City + “\t” + CustomerId;  
  23.         }  
  24.     }  
  25.     public static class Extensions  
  26.     {  
  27.         public static bool Compare(this Customer customer1, Customer customer2)  
  28.         {  
  29.             if (customer1.CustomerId == customer2.CustomerId &&  
  30.                 customer1.Name == customer2.Name &&  
  31.                 customer1.City == customer2.City)  
  32.             {  
  33.                 return true;  
  34.             }  
  35.  
  36.             return false;  
  37.         }  
  38.  
  39.     }  
  40.  
  41.     class Program  
  42.     {  
  43.         static void Main(string[] args)  
  44.         {  
  45.             var customers = CreateCustomers();  
  46.  
  47.             var newCustomer = new Customer(10)  
  48.             {  
  49.                 Name = “Stuart Glasson”,  
  50.                 City = “Oxford”  
  51.             };  
  52.  
  53.             foreach (var c in customers)  
  54.             {  
  55.       
  56.                 if (newCustomer.Compare(c))  
  57.                 {  
  58.                     Console.WriteLine(”The new customer was already in the list”);  
  59.                     return;  
  60.                 }  
  61.  
  62.             }  
  63.  
  64.             Console.WriteLine(”The new customer was not in the list”);  
  65.  
  66.         }  
  67.  
  68.         static List< Customer> CreateCustomers()  
  69.         {  
  70.             return new List< Customer>  
  71.                 {  
  72.                     new Customer(1) { Name = “Alex Roland”,             City = “Berlin”    },  
  73.                     new Customer(2) { Name = “Oliver Cox”,              City = “Marseille” },  
  74.                     new Customer(3) { Name = “Maurice Taylor”,          City = “London”    },  
  75.                     new Customer(4) { Name = “Phil Gibbins”,            City = “London”    },  
  76.                     new Customer(5) { Name = “Tony Madigan”,            City = “Torino”    },  
  77.                     new Customer(6) { Name = “Elizabeth A. Andersen”,   City = “Portland”  },  
  78.                     new Customer(7) { Name = “Justin Thorp”,            City = “London”    },  
  79.                     new Customer(8) { Name = “Bryn Paul Dunton”,        City = “Portland”  }  
  80.                 };  
  81.         }  
  82.     } 

C# 3.0新特性中的扩展方法就介绍到这里,希望对大家有用。

【编辑推荐】

  1. C#语言读书心得备忘
  2. 详解C#制做Active控件的五个步骤
  3. 总结C#多线程的点点滴滴
  4. 学习C#多线程:lock的用法
  5. 各种C#数组的定义和初始化
责任编辑:book05 来源: ajaxcn
相关推荐

2009-08-31 14:45:07

Visual C# 3

2009-09-01 11:19:47

C# 3.0扩展重载抉

2009-09-18 15:53:37

C# 3.0新语言特性

2009-08-24 18:01:45

C#3.0新特性

2009-08-26 17:10:09

C# 3.5新特性

2009-08-10 17:36:17

C#扩展方法

2009-08-27 18:04:01

c#扩展方法string

2009-08-19 16:51:14

C# 4.0 dyna

2009-09-01 11:04:59

C#调用扩展方法

2009-08-24 17:55:44

C#3.0新特性

2009-08-31 14:45:10

C#扩展方法

2009-05-26 09:28:22

C# 4.0dynamic动态类型

2009-08-27 09:27:49

C#扩展方法

2009-08-18 14:14:45

C#扩展方法性能测试

2009-08-26 15:53:48

C#扩展方法

2016-10-13 13:33:41

反射特性c#

2009-08-13 09:46:49

C#历史C# 4.0新特性

2011-07-27 16:12:35

Linux KerneLinux内核

2009-07-27 09:46:28

Silverlight

2009-05-26 11:15:31

C# 4.0dynamicVisual Stud
点赞
收藏

51CTO技术栈公众号