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

发布于 2024-07-07 01:58:10 字数 281 浏览 13 评论 0原文

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

类似这样的事情:

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

在 C# .net 2.0 中可能吗?

I have an abstract class and I would like to use it quickly by NOT create a concrete class that inherit the abstract class. Well, to define the abstract method anonymously.

Something like that:

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

Is it possible in C# .net 2.0?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

香橙ぽ 2024-07-14 01:58:10

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

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
           });

You could create a type that wraps an action providing an implementation as such:

class ActionCommand
{
    private readonly Action _action;

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

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

This then can be used as so:

Command c = new Command((Action)delegate()
           {
              // insert code here
           });
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文