c# – 仅允许为特定类实现接口

前端之家收集整理的这篇文章主要介绍了c# – 仅允许为特定类实现接口前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
是否只允许一些特定的类来实现一个迭代?
假设我创建了界面IMyInterface,我只想从UserControl派生的类能够实现我的界面.这可能吗?

解决方法

你不能,但你可以通过添加一个Control属性到你的界面来实现类似的东西,按照惯例,所有的实现都返回这个.不能解决你的问题,但让实现想到这个界面真的属于这里的天气.还允许接口的用户以类型安全的方式检索控件,而无需转换.
interface IMyInterface
{
    void Foo();
    UserControl Control { get; }
}


class MyControl : UserControl,IMyInterface
{
    public void Foo()
    {
        // TODO: Write code here
    }

    UserControl IMyInterface.Control
    {
        get { return this; }
    }
}

UPDATE

还有另一个解决方案 – 制作一个通用的方法.界面本身不会受到限制,但操作方法将是.例如,以下方法要求其参数都继承UserControl并实现IMyInterface:

void Bar<T>(T item)
  where T : UserControl,IMyInterface
{
    item.Width = 120;    // user control property
    item.Foo();          // IMyInterface method
}
原文链接:https://www.f2er.com/csharp/95783.html

猜你在找的C#相关文章