我有一组由静态类组成的逻辑,例如:
@H_403_2@static class A {
static int mutate(int i) { /**implementation*/ };
static double prop(double a,double b) { /**implementation*/ };
}
static class B {
static int mutate(int i) { /**implementation*/ };
static double prop(double a,double b) { /**implementation*/ };
}
在这种情况下,A和B是通过一组函数(例如mutate)实现相同行为的静态类.我想使用类似于这种模式的接口,但由于静态类无法实现接口,我不知道该怎么做.干净地实施这种行为的最佳方法是什么?
编辑:
这是我目前正在做的一个例子.这些类没有状态,所以通常我会把它们变成静态的.
@H_403_2@Interface IMutator { int mutate(int i); } class A : IMutator { int mutate(int i) { /**implementation*/ }; } class B : IMutator { int mutate(int i) { /**implementation*/ }; } class C { public List<IMutator> Mutators; public C(List<IMutator> mutators) { Mutators = mutators; } } //Somewhere else... //The new keyword for A and B is what really bothers me in this case. var Cinstance = new C(new List<IMutator>() {new A(),new B() /**...*/});