当前位置:  开发笔记 > 编程语言 > 正文

接口中的C#构造函数

如何解决《接口中的C#构造函数》经验,为你挑选了1个好方法。

我知道你不能在界面中有一个构造函数,但这是我想要做的:

 interface ISomething 
 {
       void FillWithDataRow(DataRow)
 }


 class FooClass where T : ISomething , new()
 {
      void BarMethod(DataRow row)
      {
           T t = new T()
           t.FillWithDataRow(row);
      }
  }

我真的想以某种方式用构造函数替换ISomething's FillWithDataRow方法.

这样,我的成员类可以实现接口,仍然是只读(它不能与FillWithDataRow方法).

有没有人有一个可以做我想要的模式?



1> NDM..:

使用抽象类代替?

你也可以让你的抽象类实现一个接口,如果你想...

interface IFillable {
    void FillWith(T);
}

abstract class FooClass : IFillable {
    public void FooClass(DataRow row){
        FillWith(row);
    }

    protected void FillWith(DataRow row);
}

推荐阅读
ERIK又
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有