gpt4 book ai didi

c# - 人们如何在 C# 中重用混合风格?

转载 作者:塔克拉玛干 更新时间:2023-11-03 00:57:11 24 4
gpt4 key购买 nike

我来自 C++ 背景,在那里我可以使用模板混合来编写引用 FinalClass 的代码,FinalClass 是传入的模板参数。这允许将可重用函数“混合”到任何派生类,只需简单地继承自 ReusableMixin,模板参数为 MyFinalClass。这一切都被内联到类中,所以就好像我只是写了一个大类来完成所有的事情——即非常快!由于 mixins 可以链接,我可以将各种行为(和状态)混合到一个对象中。

如果有人想了解该技术,请询问。我的问题是,我怎样才能像在 C# 中那样重用?注意:C# 泛型不允许从泛型参数继承。

最佳答案

您可以使用接口(interface)和扩展方法。例如:

public interface MDoSomething // Where M is akin to I
{
// Don't really need any implementation
}

public static class MDoSomethingImplementation
{
public static string DoSomething(this MDoSomething @this, string bar) { /* TODO */ }
}

现在您可以通过从 MDoSomething 继承来使用混入。请记住,在 (this) 类中使用扩展方法需要 this 限定符。例如:

public class MixedIn : MDoSomething
{
public string DoSomethingGreat(string greatness)
{
// NB: this is used here.
return this.DoSomething(greatness) + " is great.";
}
}

public class Program
{
public static void Main()
{
MixedIn m = new MixedIn();
Console.WriteLine(m.DoSomething("SO"));
Console.WriteLine(m.DoSomethingGreat("SO"));
Console.ReadLine();
}
}

HTH.

关于c# - 人们如何在 C# 中重用混合风格?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/412378/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com