工厂和绘图员的职责是否重叠?

发布于 2024-10-15 13:15:35 字数 90 浏览 6 评论 0原文

我对地图绘制者应该承担哪些责任感到有点困惑。您能否为我提供有关对象工厂和对象映射器之间相互依赖关系的更深入的描述。对象映射器应该使用对象工厂还是应该自己创建结果对象?

I am a bit confused as to what responsibilities should a mapper hold. Could you please provide me with more in-depth description of mutual interdependence between object factory and object mapper. Should object mapper make use of object factory or should it create result objects on its own?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

风向决定发型 2024-10-22 13:15:35

工厂(或 IoC/DI 容器)的工作是创建新对象。

映射器的工作是创建现有对象的副本。

话虽这么说,映射器确实必须有一个对象来启动,并且您有 3 个选项...

  1. 将一个选项传递给映射方法(我建议仅当您有特定原因时才这样做,否则使用其他之一 2)
  2. 配置映射器使用工厂或容器,如果适用/注册/无论什么都
  3. 让映射器自己创建对象

The job of a factory (or an IoC/DI container) is to create new objects.

The job of the mapper is to create copies of existing objects.

That being said, the mapper does have to have an object to start with, and you've got 3 options there...

  1. pass one into the mapping method (I would recommend doing this only when you have a specific reason to, otherwise use one of the other 2)
  2. configure the mapper to use the factory or container, if applicable/registered/whatever
  3. let the mapper create the objects on its own
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文