gpt4 book ai didi

oop - 模型-服务解耦: what if my model needs a service?

转载 作者:行者123 更新时间:2023-12-04 05:22:52 25 4
gpt4 key购买 nike

服务层应该位于模型层之上。因此,模型不应该调用服务。

但是,我面临着我需要的情况,例如:

interface Component {
getResult();
}
class Number implements Component {
private value;
public getResult() {
return value;
}
}
class Addition implements Component {
private component1;
private component2;
public getResult() {
return component1->getResult() + component2->getResult();
}
}
class ConstantFromExternalSource implements Component {
private identifier;
public getResult() {
// call a service for fetching constant identified by identifier
}
}

(伪代码)

在这里,我的模型需要通过服务(无论是否为 web 服务)访问外部数据源。

在这种情况下我该怎么办? 在模型中调用服务可以吗?

如果您建议从模型中移走“getResult”方法并将其放入“ComponentService”中,我会不同意,因为我会失去 OOP 的所有优点(这里我的模型创建了一个需要递归解析的树,所以 OOP 是最好的解决方案)。

最佳答案

您可以通过多种方式实现这一目标。
首先,您可以在单独的界面中提取模型的依赖关系,例如:

interface CustomService {
getResult();
}

class ExternalService implments CustomService
{
getResult() { // access web service }
}

然后将该依赖项注入(inject)模型中:
class ConstantFromExternalSource implements Component {
private identifier;
private CustomService service;

ConstantFromExternalSource(CustomService service)
{
this.service = service;
}


public getResult() {
// call a service for fetching constant identified by identifier
return service.getResult();
}
}

实现此目的的另一种方法是使用 Observer Design Pattern并通知更高层次的抽象你需要他们的东西。

在这两种方式中,您都可以将模型与服务层的具体实现分离。

关于oop - 模型-服务解耦: what if my model needs a service?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13527621/

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