gpt4 book ai didi

C# 抽象类,使用匿名而不是声明具体类?

转载 作者:太空宇宙 更新时间:2023-11-03 14:37:52 25 4
gpt4 key购买 nike

我有一个抽象类,我想通过不创建继承抽象类的具体类来快速使用它。嗯,匿名定义抽象方法。

类似的东西:

           Command c = new Command(myObject){
public override void Do()
{
}
};

在 C# .net 2.0 中可以吗?

最佳答案

您可以创建一个类型来包装提供这样一个实现的操作:

class ActionCommand
{
private readonly Action _action;

public ActionCommand(Action action)
{
_action = action;
}

public override void Do()
{
_action();
}
};

然后可以这样使用:

Command c = new Command((Action)delegate()
{
// insert code here
});

关于C# 抽象类,使用匿名而不是声明具体类?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/180397/

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