设计抽象 setter/modifier 的程度

发布于 2024-10-05 08:17:31 字数 1431 浏览 2 评论 0原文

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

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

发布评论

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

评论(1

执妄 2024-10-12 08:17:31

我建议使用选项 4,主要是因为您可能不希望数据对象与消息传输机制如此紧密地联系在一起。

使用选项 1 和 2,如果您决定更改 XML 模式(或者如果您认为 XML 太冗长,或者您想要包含加密等),那么您现在可能必须更改数据对象实现 - 与选项3不好。

您是否绝对确定当前的 XML 消息集将是数据发生更改的唯一原因?我的意思是真的绝对100% 确定没有人不想使用XML?如果没有,则选择 4。将实现(数据对象)与接口(XML 消息)解耦是确保代码可维护的最佳方法。

I'd suggest option 4, mostly because you probably don't want your data objects to be so closely tied to the message transport mechanism.

With options 1 and 2 if you decide to change your XML schema (or if you decide that XML is too verbose, or if you want to include encryption etc etc) then you probably now have to change your data object implementation - the same reason that option 3 is bad.

Are you absolutely certain that your current set of XML messages will be the only reason that data will change, ever? I mean really absolutely 100% certain that no-one will ever not want to use XML? If not, then go with 4. Decoupling implementation (data object) from interface (XML messages) is the best way to ensure your code is maintainable.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文