c# – 将具有相同行为的静态类分组

前端之家收集整理的这篇文章主要介绍了c# – 将具有相同行为的静态类分组前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我有一组由静态类组成的逻辑,例如: @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() /**...*/});

解决方法

无状态类不必是静态的.
此外,当您想要编写单元测试时,或者当您想要提取一些通用接口时(如您的情况),静态依赖项不是一个好的选择.

拥有非静态类是可以的,只包含逻辑.例如,人们使用无状态控制器构建ASP .NET应用程序.

所以,抛弃静态并提取一个接口.

猜你在找的C#相关文章