gpt4 book ai didi

c# - 如何在不使用 IF 条件的情况下执行此操作

转载 作者:行者123 更新时间:2023-11-30 20:04:40 25 4
gpt4 key购买 nike

我有一个定义了一种方法的接口(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/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com