- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
我正在尝试在我的基类中放置一个通用的 Add 方法,该方法将适用于不同类型的类,所有类都实现了 ICollection。到目前为止一切顺利,我可以使用装箱/拆箱来实现我想要的,但我想知道是否有更好的方法来做到这一点。我很少使用协变接口(interface),但运气不佳 - 甚至可以定义 IVariantCollection 吗?
这是一段代码,可以解释我试图实现的目标:
public abstract class Device
{
public string Name { get; set; }
public abstract void Print();
}
public class Printer : Device { public override void Print() => Debug.WriteLine($"{Name} printer printout"); }
public class Xero : Device { public override void Print() => Debug.WriteLine($"{Name} xero printout."); }
public abstract class Factory
{
public abstract IEnumerable<Device> DeviceCollection { get; }
public abstract void Add(object added);
public void ListDevices() { foreach (var item in DeviceCollection) Debug.WriteLine($"Device: {item.Name}"); }
}
public class PrinterFactory : Factory
{
public List<Printer> Printers = new List<Printer>();
public override IEnumerable<Device> DeviceCollection => Printers;
public override void Add(object added) { Printers.Add((Printer)added); }
}
public class XeroFactory : Factory
{
public ObservableCollection<Xero> Xeros = new ObservableCollection<Xero>();
public override IEnumerable<Device> DeviceCollection => Xeros;
public XeroFactory() { Xeros.CollectionChanged += (s, e) => Debug.WriteLine($"Device added: {e.NewItems[0]}"); }
public override void Add(object added) { Xeros.Add((Xero)added); }
}
代码有效,但我不喜欢这种使用 object 的解决方案 - 是否有其他方法可以定义 Add 方法,也许是基类中的通用方法?
最佳答案
使用具有基类约束的通用Factory
public abstract class Factory<TDevice> where TDevice : Device
{
public abstract IEnumerable<TDevice> DeviceCollection { get; }
public abstract void Add(TDevice added);
public void ListDevices()
{
foreach (var item in DeviceCollection)
Debug.WriteLine($"Device: {item.Name}");
}
}
然后
public class PrinterFactory : Factory<Printer>
{
public List<Printer> Printers = new List<Printer>();
public override IEnumerable<Printer> DeviceCollection => Printers;
public override void Add(Printer added) { Printers.Add(added); }
}
关于c# - 定义处理派生类集合的基类方法,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34986566/
经过几个小时的(重新)搜索,我无法想出普通抽象类和使用模板模式之间的可解释区别。 我唯一看到的是: 使用抽象类时,您需要实现所有方法。但是在使用模板方法时,您只需要实现这两个抽象方法。 有人可以向我解
我正在尝试实现一种算法,该算法可找到以下形状给出的外多边形的每个单独边的对应区域。也就是说,1,2 边的相应区域是 [1,6,7,8,2],2,3 边的区域是 [2,8,3] 等等,CCW 或 CW
我正在尝试在派生 self 的 BaseController 类的任何 Controller 上自动设置一个属性。这是我的 Application_Start 方法中的代码。 UnitOfWork 属
我正在使用 mgcv 包通过以下方式将一些多项式样条拟合到一些数据: x.gam smooth$knots [1] -0.081161 -0.054107 -0.027053 0.000001
考虑以下代码: void foo(){ ..... } int main() { int arr[3][3] ; char string[10]; foo();
本书The c++ programming language有这个代码: class BB_ival_slider : public Ival_slider, protected BBslider {
是否有一个 package.json 属性可用于指定模块解析应启动的根文件夹? 例如,假设我们在 node_modules/mypackage/src/file1 中有一个安装。我们要导入的所有文件都
我正在尝试使用聚合函数来实现与 SQL 查询相同的结果: 查询语句: sqldf(" SELECT PhotoID, UserID,
我正在比较使用 LOESS 回归的两条线。我想清楚地显示两条线的置信区间,我遇到了一些困难。 我尝试过使用各种线型和颜色,但在我看来,结果仍然是忙碌和凌乱。我认为置信区间之间的阴影可能会使事情变得更清
给定这段代码 public override void Serialize(BaseContentObject obj) { string file = ObjectDataStoreFold
我正在构建某种工厂方法,它按以下方式将 DerivedClass 作为 BaseClass 返回: BaseClass Factory() { return DerivedClass(); }
当重写 class delegation 实现的接口(interface)方法时,是否可以调用通常从重写函数中委托(delegate)给的类?类似于使用继承时调用 super 的方式。 来自docum
我有一个基类 fragment (如下所示)。我在其他 3 个 fragment 类中扩展了此类,每个类都共享需要在这 3 个 fragment 中访问的相同 EditText。因此,我在基类中设置了
如何在不加载额外库的情况下在 R 中计算两个排列之间的 Kendall tau 距离(又名冒泡排序距离)? 最佳答案 这是一个 O(n.log(n)) 的实现,在阅读后拼凑而成,但我怀疑可能有更好的
情况 我创建了一个具有国际化 (i18n) 的 Angular 应用程序。我想在子域中托管不同的版本,例如: zh.myexample.com es.myexample.com 问题 当我使用命令 n
std::is_base_of 之间的唯一区别和 std::is_convertible是前者在 Base 时也成立是 私有(private)或 protected Derived 的基类.但是,您何
我创建了一个名为 baseviewcontroller 的父类(super class) uiviewcontroller 类,用于包含大多数应用屏幕所需的基本 UI。它包括一个自定义导航栏和一个“自
我是一名优秀的程序员,十分优秀!