599

我是 C# 中扩展方法的粉丝,但在将扩展方法添加到静态类(例如Console.

例如,如果我想添加一个扩展Console名为 ' WriteBlueLine',这样我就可以去:

Console.WriteBlueLine("This text is blue");

我通过添加一个本地的、公共的静态方法来尝试这个,Console作为一个' this'参数......但没有骰子!

public static class Helpers {
    public static void WriteBlueLine(this Console c, string text)
    {
        Console.ForegroundColor = ConsoleColor.Blue;
        Console.WriteLine(text);
        Console.ResetColor();
    }
}

这没有添加一个 ' WriteBlueLine' 方法来Console......我做错了吗?还是要求不可能的事?

4

17 回答 17

313

不可以。扩展方法需要一个对象的实例变量(值)。但是,您可以在接口周围编写一个静态包装器ConfigurationManager。如果您实现包装器,则不需要扩展方法,因为您可以直接添加方法。

 public static class ConfigurationManagerWrapper
 {
      public static ConfigurationSection GetSection( string name )
      {
         return ConfigurationManager.GetSection( name );
      }

      .....

      public static ConfigurationSection GetWidgetSection()
      {
          return GetSection( "widgets" );
      }
 }
于 2008-11-21T16:44:56.610 回答
93

你可以在 C# 中为类添加静态扩展吗?不,但你可以这样做:

public static class Extensions
{
    public static T Create<T>(this T @this)
        where T : class, new()
    {
        return Utility<T>.Create();
    }
}

public static class Utility<T>
    where T : class, new()
{
    static Utility()
    {
        Create = Expression.Lambda<Func<T>>(Expression.New(typeof(T).GetConstructor(Type.EmptyTypes))).Compile();
    }
    public static Func<T> Create { get; private set; }
}

这是它的工作原理。虽然您不能在技术上编写静态扩展方法,但此代码利用了扩展方法中的漏洞。这个漏洞是你可以在 null 对象上调用扩展方法而不会得到 null 异常(除非你通过 @this 访问任何东西)。

所以这里是你将如何使用它:

    var ds1 = (null as DataSet).Create(); // as oppose to DataSet.Create()
    // or
    DataSet ds2 = null;
    ds2 = ds2.Create();

    // using some of the techniques above you could have this:
    (null as Console).WriteBlueLine(...); // as oppose to Console.WriteBlueLine(...)

现在为什么我选择调用默认构造函数作为示例,以及为什么我不在第一个代码片段中返回 new T() 而不做所有的表达式垃圾?那么今天是你的幸运日,因为你得到了 2fer。任何高级 .NET 开发人员都知道,new T() 很慢,因为它会生成对 System.Activator 的调用,该调用在调用之前使用反射来获取默认构造函数。该死的微软!但是我的代码直接调用对象的默认构造函数。

静态扩展会比这更好,但绝望的时候需要绝望的措施。

于 2011-03-27T19:20:53.930 回答
63

这是不可能的。

是的,我认为 MS 在这里犯了一个错误。

他们的决定没有意义,并迫使程序员(如上所述)编写一个毫无意义的包装类。

这是一个很好的例子: Trying to extend static MS Unit testing class Assert: I want 1 more Assert method AreEqual(x1,x2)

做到这一点的唯一方法是指向不同的类或编写一个包含 100 多个不同 Assert 方法的包装器。为什么!?

如果决定允许扩展实例,我认为没有逻辑理由不允许静态扩展。一旦可以扩展实例,关于划分库的论点就站不住脚了。

于 2009-01-12T14:44:24.980 回答
35

我在试图找到 OP 的同一个问题的答案时偶然发现了这个线程。我没有找到我想要的答案,但我最终这样做了。

public static class Helpers
{
    public static void WriteLine(this ConsoleColor color, string text)
    {
        Console.ForegroundColor = color;
        Console.WriteLine(text);
        Console.ResetColor();
    }
}

我像这样使用它:

ConsoleColor.Cyan.WriteLine("voilà");
于 2017-06-01T15:12:46.133 回答
21

也许您可以使用自定义命名空间和相同的类名添加一个静态类:

using CLRConsole = System.Console;

namespace ExtensionMethodsDemo
{
    public static class Console
    {
        public static void WriteLine(string value)
        {
            CLRConsole.WriteLine(value);
        }

        public static void WriteBlueLine(string value)
        {
            System.ConsoleColor currentColor = CLRConsole.ForegroundColor;

            CLRConsole.ForegroundColor = System.ConsoleColor.Blue;
            CLRConsole.WriteLine(value);

            CLRConsole.ForegroundColor = currentColor;
        }

        public static System.ConsoleKeyInfo ReadKey(bool intercept)
        {
            return CLRConsole.ReadKey(intercept);
        }
    }
    class Program
    {
        static void Main(string[] args)
        {
            try
            {
                Console.WriteBlueLine("This text is blue");   
            }
            catch (System.Exception ex)
            {
                Console.WriteLine(ex.Message);
                Console.WriteLine(ex.StackTrace);
            }

            Console.WriteLine("Press any key to continue...");
            Console.ReadKey(true);
        }
    }
}
于 2010-01-07T04:11:31.477 回答
18

从 C#7 开始,不支持此功能。然而,有关于在 C#8 中集成类似的东西以及值得支持的建议的讨论。

于 2017-09-28T10:02:29.240 回答
17

没有。扩展方法定义需要您要扩展的类型的实例。不幸的是;我不确定为什么需要它...

于 2008-11-21T16:44:39.793 回答
7

您不能将静态方法添加到类型。您只能将(伪)实例方法添加到类型的实例。

修饰符的重点this是告诉 C# 编译器将左侧的实例.作为静态/扩展方法的第一个参数传递。

在向类型添加静态方法的情况下,没有实例可以传递给第一个参数。

于 2008-10-30T04:00:49.090 回答
7

至于扩展方法,扩展方法本身是静态的;但它们被调用就好像它们是实例方法一样。由于静态类不可实例化,因此您永远不会有该类的实例来调用扩展方法。由于这个原因,编译器不允许为静态类定义扩展方法。

Obnoxious 先生写道:“任何高级 .NET 开发人员都知道,new T() 很慢,因为它会生成对 System.Activator 的调用,该调用使用反射来获取默认构造函数,然后再调用它”。

如果类型在编译时已知,New() 将编译为 IL“newobj”指令。Newobj 采用构造函数进行直接调用。对 System.Activator.CreateInstance() 的调用编译为 IL“调用”指令以调用 System.Activator.CreateInstance()。对泛型类型使用 New() 将导致调用 System.Activator.CreateInstance()。Obnoxious 先生的帖子在这一点上不清楚……而且,令人讨厌。

这段代码:

System.Collections.ArrayList _al = new System.Collections.ArrayList();
System.Collections.ArrayList _al2 = (System.Collections.ArrayList)System.Activator.CreateInstance(typeof(System.Collections.ArrayList));

产生这个 IL:

  .locals init ([0] class [mscorlib]System.Collections.ArrayList _al,
           [1] class [mscorlib]System.Collections.ArrayList _al2)
  IL_0001:  newobj     instance void [mscorlib]System.Collections.ArrayList::.ctor()
  IL_0006:  stloc.0
  IL_0007:  ldtoken    [mscorlib]System.Collections.ArrayList
  IL_000c:  call       class [mscorlib]System.Type [mscorlib]System.Type::GetTypeFromHandle(valuetype [mscorlib]System.RuntimeTypeHandle)
  IL_0011:  call       object [mscorlib]System.Activator::CreateInstance(class [mscorlib]System.Type)
  IL_0016:  castclass  [mscorlib]System.Collections.ArrayList
  IL_001b:  stloc.1
于 2012-01-11T19:35:41.130 回答
4

当我学习扩展方法并且没有成功时,我尝试使用 System.Environment 执行此操作。正如其他人提到的那样,原因是因为扩展方法需要类的实例。

于 2008-11-21T16:39:23.440 回答
3

不可能编写扩展方法,但是可以模仿您要求的行为。

using FooConsole = System.Console;

public static class Console
{
    public static void WriteBlueLine(string text)
    {
        FooConsole.ForegroundColor = ConsoleColor.Blue;
        FooConsole.WriteLine(text);
        FooConsole.ResetColor();
    }
}

这将允许您在其他类中调用 Console.WriteBlueLine(fooText)。如果其他类想要访问 Console 的其他静态函数,则必须通过它们的命名空间显式引用它们。

如果您想将所有方法都放在一个地方,您可以随时将所有方法添加到替换类中。

所以你会有类似的东西

using FooConsole = System.Console;

public static class Console
{
    public static void WriteBlueLine(string text)
    {
        FooConsole.ForegroundColor = ConsoleColor.Blue;
        FooConsole.WriteLine(text);
        FooConsole.ResetColor();
    }
    public static void WriteLine(string text)
    {
        FooConsole.WriteLine(text);
    }
...etc.
}

这将提供您正在寻找的那种行为。

*注意必须通过您放入的命名空间添加控制台。

于 2018-08-12T04:39:56.290 回答
1

是的,在有限的意义上。

public class DataSet : System.Data.DataSet
{
    public static void SpecialMethod() { }
}

这有效,但控制台不起作用,因为它是静态的。

public static class Console
{       
    public static void WriteLine(String x)
    { System.Console.WriteLine(x); }

    public static void WriteBlueLine(String x)
    {
        System.Console.ForegroundColor = ConsoleColor.Blue;
        System.Console.Write(.x);           
    }
}

这是有效的,因为只要它不在同一个命名空间上。问题是您必须为 System.Console 拥有的每个方法编写代理静态方法。这不一定是坏事,因为您可以添加如下内容:

    public static void WriteLine(String x)
    { System.Console.WriteLine(x.Replace("Fck","****")); }

或者

 public static void WriteLine(String x)
    {
        System.Console.ForegroundColor = ConsoleColor.Blue;
        System.Console.WriteLine(x); 
    }

它的工作方式是将某些东西挂接到标准的 WriteLine 中。它可能是行数或坏词过滤器或其他任何东西。每当您在命名空间中指定 Console 时说 WebProject1 并导入命名空间 System,WebProject1.Console 将选择 System.Console 作为命名空间 WebProject1 中这些类的默认值。因此,只要您从未指定 System.Console.WriteLine,此代码会将所有 Console.WriteLine 调用变为蓝色。

于 2014-11-09T17:41:56.237 回答
1

以下内容被拒绝作为对 tvanfosson 答案的编辑。我被要求贡献它作为我自己的答案。我使用了他的建议并完成了ConfigurationManager包装器的实现。原则上,我只是填写了...tvanfosson 的答案。

不可以。扩展方法需要一个对象的实例。但是,您可以围绕 ConfigurationManager 接口编写一个静态包装器。如果您实现包装器,则不需要扩展方法,因为您可以直接添加方法。

public static class ConfigurationManagerWrapper
{
    public static NameValueCollection AppSettings
    {
        get { return ConfigurationManager.AppSettings; }
    }

    public static ConnectionStringSettingsCollection ConnectionStrings
    {
        get { return ConfigurationManager.ConnectionStrings; }
    }

    public static object GetSection(string sectionName)
    {
        return ConfigurationManager.GetSection(sectionName);
    }

    public static Configuration OpenExeConfiguration(string exePath)
    {
        return ConfigurationManager.OpenExeConfiguration(exePath);
    }

    public static Configuration OpenMachineConfiguration()
    {
        return ConfigurationManager.OpenMachineConfiguration();
    }

    public static Configuration OpenMappedExeConfiguration(ExeConfigurationFileMap fileMap, ConfigurationUserLevel userLevel)
    {
        return ConfigurationManager.OpenMappedExeConfiguration(fileMap, userLevel);
    }

    public static Configuration OpenMappedMachineConfiguration(ConfigurationFileMap fileMap)
    {
        return ConfigurationManager.OpenMappedMachineConfiguration(fileMap);
    }

    public static void RefreshSection(string sectionName)
    {
        ConfigurationManager.RefreshSection(sectionName);
    }
}
于 2015-11-21T11:57:59.897 回答
1

您可以在 null 上使用强制转换来使其工作。

public static class YoutTypeExtensionExample
{
    public static void Example()
    {
        ((YourType)null).ExtensionMethod();
    }
}

扩展:

public static class YourTypeExtension
{
    public static void ExtensionMethod(this YourType x) { }
}

你的类型:

public class YourType { }
于 2017-05-29T08:05:37.307 回答
0

用这个

public static class ConfigurationManagerWrapper
 {
  public static ConfigurationSection GetSection( string name )
  {
     return ConfigurationManager.GetSection( name );
  }

  .....

  public static ConfigurationSection GetWidgetSection()
  {
      return GetSection( "widgets" );
  }
 }
于 2021-11-30T01:57:29.867 回答
0

虽然 的方法Console是静态的,但它的静态方法只是将调用分别重定向到Write()和。是一个实例,其类型派生自抽象类。这使得定义扩展方法成为可能:WriteLine()Console.Out.Write()Console.Out.WriteLine()OutTextWriterTextWriter

public static class ConsoleTextWriterExtensions
{
    public static void WriteBlueLine(this TextWriter writer, string text)
    {
        Console.ForegroundColor = ConsoleColor.Blue;
        writer.WriteLine(text);
        Console.ResetColor();
    }

    public static void WriteUppercase(this TextWriter writer, string text)
    {
        writer.Write(text.ToUpper());
    }
}

然后可以像这样调用该方法:

Console.Out.WriteBlueLine();

最好的部分是标准错误流实例的类型Console.Error也从中派生TextWriter,使得相同的扩展方法也可用于Console.Error

Console.Error.WriteBlueLine();

如果您定义了一个扩展方法,例如WriteTable()(用于将表写入控制台),这将非常有用,因为您也可以将它用于错误流或TextWriter.

较新版本的 C# 允许它更短,并使用for 将前缀变为红色的using static语句:ConsoleConsole.

using static System.Console;

Out.WriteBlueLine("A blue line");
Error.WriteBlueLine("A blue line");
于 2022-01-29T09:18:32.427 回答
-5

如果您愿意通过创建静态类的变量并将其分配给 null 来稍微“操纵”它,您可以这样做。但是,此方法不适用于类上的静态调用,因此不确定它有多少用途:

Console myConsole = null;
myConsole.WriteBlueLine("my blue line");

public static class Helpers {
    public static void WriteBlueLine(this Console c, string text)
    {
        Console.ForegroundColor = ConsoleColor.Blue;
        Console.WriteLine(text);
        Console.ResetColor();
    }
}
于 2010-09-15T14:39:26.063 回答