2

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

像这样的东西:

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

在 C# .net 2.0 中有可能吗?

4

1 回答 1

1

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

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
           });
于 2008-10-07T21:07:36.020 回答