交换C#方法的实现



是否可以在C#中交换方法的实现,比如Objective-C中的方法swizzling?

因此,我可以在运行时用自己的实现(或在其中添加另一个)替换现有的实现(例如,通过dll从外部源)。

我找过这个,但没有找到任何有价值的东西。

您可以使用delegates使代码指向您希望在运行时执行的任何方法。

public delegate void SampleDelegate(string input);

以上是指向产生void并将string作为输入的任何方法的函数指针。您可以将任何具有该签名的方法分配给它。这也可以在运行时完成。

一个简单的教程也可以在MSDN上找到。

编辑,根据您的评论:

public delegate void SampleDelegate(string input);
...
//Method 1
public void InputStringToDB(string input) 
{
    //Input the string to DB
}
...
//Method 2
public void UploadStringToWeb(string input)
{
    //Upload the string to the web.
}
...
//Delegate caller
public void DoSomething(string param1, string param2, SampleDelegate uploadFunction)
{
    ...
    uploadFunction("some string");
}
...
//Method selection:  (assumes that this is in the same class as Method1 and Method2.
if(inputToDb)
    DoSomething("param1", "param2", this.InputStringToDB);
else
    DoSomething("param1", "param2", this.UploadStringToWeb);

您也可以使用Lambda表达式:DoSomething("param1", "param2", (str) => {// what ever you need to do here });

另一种选择是使用CCD_ 5。在这种情况下,您声明接口并使用它们来表示所提供的行为。

public interface IPrintable
{
    public void Print();
}
public class PrintToConsole : IPrintable
{
    public void Print()
    {
        //Print to console
    }
}
public class PrintToPrinter : IPrintable
{
    public void Print()
    {
        //Print to printer
    }
}

public void DoSomething(IPrintable printer)
{
     ...
     printer.Print();
}
...
if(printToConsole)
    DoSomething(new PrintToConsole());
else
    DoSomething(new PrintToPrinter());

第二种方法比第一种方法稍微严格一些,但我认为这也是实现你想要的另一种方法。

"替换方法"的唯一方法是使用委托。

如果你的代码看起来像这样:

public void Foo()
{
    Bar();
}
public void Bar()
{
}

那么就不能让Foo调用除Bar之外的任何其他方法。您在Objective-C中引用的方法调度表在.NET.中是不可变的

为了能够指定Foo应该调用上面的哪个方法,您需要使用delegate:

public void Foo(Action whichMethod)
{
    whichMethod();
}

你可以这样称呼它:

Foo(Bar);
Foo(Baz);

但是必须构建该方法以允许这种运行时替换。

虽然这不是在强类型语言中实现面向对象编程的最佳途径,但值得一提的是,自.NET 4.0以来,C#已经包含了允许动态编程的动态语言运行时(DLR)。最奇怪的动态对象之一是ExpandoObject:一个完全可在运行时扩展的对象:

dynamic expando = new ExpandoObject();
expando.DoStuff = new Func<string>(() => "hello world");
// Now you can swap DoStuff with other method setting another delegate:
expando.DoStuff = new Func<string, string>(text => text + "!");

顺便说一句,正如我上面所说,我在这里分享这种方法只是为了学习。它在某些边缘情况下可能很有用,但由于C#是一种编译的强类型语言,因此在99.99%的情况下应该避免这种方法。

void Test(Action method) {
     if ( method != null ) method.invoke();
}

你可以叫这个

Test( () => { Console.WriteLine("hello world"); } )

更改def并再次调用

Test( () => { MessageBox.Show("Hi"); } )

相关内容

  • 没有找到相关文章

最新更新