码迷,mamicode.com
首页 > Windows程序 > 详细

C#中自定义扩展方法

时间:2014-11-02 01:56:02      阅读:238      评论:0      收藏:0      [点我收藏+]

标签:http   io   color   os   ar   使用   for   sp   on   

在C#中,我们在不写子类的情况下,可以为类增加扩展方法,前提的被扩展的类不能使静态类。

步骤如下:

 

  1. 定义一个静态 类以包含扩展方法。该类必须对客户端代码可见。 有关可访问性规则的更多信息,请参见 访问修饰符(C# 编程指南)。
  2. 将该扩展方法实现为静态方法,并使其至少具有与包含类相同的可见性。
  3. 该方法的第一个参数指定方法所操作的类型;该参数必须以 this 修饰符开头。
  4. 在调用代码中,添加一条 using 指令以指定包含扩展方法类的 命名空间。
  5. 按照与调用类型上的实例方法一样的方式调用扩展方法。

请注意,第一个参数不是由调用代码指定的,因为它表示正应用运算符的类型,并且编译器已经知道对象的类型。 您只需通过 n 为这两个形参提供实参。

 

示例:

下面的示例在 CustomExtensions.StringExtension 类中实现了一个名为 WordCount 的扩展方法。 该方法对 String 类进行操作,而该类被指定为第一个方法参数。 CustomExtensions 命名空间被导入到应用程序命名空间中,并且该方法是在 Main 方法内调用的。

 

using System.Linq; 
using System.Text;
using System;
 
namespace CustomExtensions
{
    //Extension methods must be defined in a static class
    public static class StringExtension
    {
        // This is the extension method.
        // The first parameter takes the "this" modifier
        // and specifies the type for which the method is defined.
        public static int WordCount(this String str)
        {
            return str.Split(new char[] {‘ ‘, ‘.‘,‘?‘}, StringSplitOptions.RemoveEmptyEntries).Length;
        }
    }
}
namespace Extension_Methods_Simple
{
    //Import the extension method namespace.
    using CustomExtensions;
    class Program
    {
        static void Main(string[] args)
        {
            string s = "The quick brown fox jumped over the lazy dog.";
            //  Call the method as if it were an 
            //  instance method on the type. Note that the first
            //  parameter is not specified by the calling code.
            int i = s.WordCount();
            System.Console.WriteLine("Word count of s is {0}", i);
        }
    }
}
这里方法扩展的关键就是(this 要扩展的类 参数名)这个参数,这个参数也可以不在方法中使用。
如果类的某一方法是由扩展而得,那么在调用的时候,会有相关文字标示。

 

参考资料:http://technet.microsoft.com/zh-cn/bb311042

C#中自定义扩展方法

标签:http   io   color   os   ar   使用   for   sp   on   

原文地址:http://www.cnblogs.com/lemoningfido/p/4068266.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!