作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有一个定义了一种方法的接口(interface)。该接口(interface)有多个以不同方式实现该接口(interface)的类。
例如:
interface IJob {
void DoSomething();
}
class SomeJob : IJob{
public void DoSomething() {
// Do something ...
}
}
class AnotherJob : IJob {
public void DoSomething() {
// Do something ...
}
}
...
我的工厂类会有一堆这样的 IF 语句
if (some condition)
{
IJob job = new SomeJob ();
else
{
IJob job = new AnotherJob ();
}
有没有办法避免每次出现新情况时都修改工厂类。这难道不能仅通过添加一个实现 IJob 的新类来完成吗?
编辑:[我想弄清楚这些家伙在 Antiifcampaign正在努力做]
感谢您的宝贵时间...
最佳答案
您必须以某种方式将条件和决定联系起来。
Dictionary<int, Action<IJob>> _methods = new ...
填写字典:
_methods.Add(0, () => {return new SomeJob();});
_methods.Add(1, () => {return new AnotherJob();});
然后使用它:
public IJob FactoryMethod(int condition)
{
if(_methods.ContainsKey(condition))
{
return _methods[int]();
}
return DefaultJob; //or null
}
您需要在应用程序启动时填写字典。从配置文件,或一些其他代码。所以当你有新的条件时,你不需要改变工厂。你喜欢这个版本吗?
关于c# - 如何在不使用 IF 条件的情况下执行此操作,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12600605/
我是一名优秀的程序员,十分优秀!